Skip to content

Commit

Permalink
Merge pull request #44 from felddy/improvement/weewx-4.5.1
Browse files Browse the repository at this point in the history
Bump weeWX version to 4.5.1
  • Loading branch information
felddy authored Oct 6, 2021
2 parents f157712 + 7245bb6 commit 19dec66
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM python:3-alpine as stage-1

ARG WEEWX_UID=421
ENV WEEWX_HOME="/home/weewx"
ENV WEEWX_VERSION="4.4.0"
ENV WEEWX_VERSION="4.5.1"
ENV ARCHIVE="weewx-${WEEWX_VERSION}.tar.gz"

RUN addgroup --system --gid ${WEEWX_UID} weewx \
Expand Down Expand Up @@ -39,7 +39,7 @@ FROM python:3-slim as stage-2
ARG TARGETPLATFORM
ARG WEEWX_UID=421
ENV WEEWX_HOME="/home/weewx"
ENV WEEWX_VERSION="4.4.0"
ENV WEEWX_VERSION="4.5.1"

# For a list of pre-defined annotation keys and value types see:
# https://github.com/opencontainers/image-spec/blob/master/annotations.md
Expand All @@ -59,7 +59,7 @@ COPY --from=stage-1 /opt/venv /opt/venv
COPY --from=stage-1 ${WEEWX_HOME} ${WEEWX_HOME}

RUN mkdir /data && \
cp weewx.conf /data
cp weewx.conf /data

VOLUME ["/data"]

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ Build the image locally using this git repository as the [build context](https:/

```console
docker build \
--tag felddy/weewx:4.4.0 \
--tag felddy/weewx:4.5.1 \
https://github.com/felddy/weewx-docker.git#develop
```

Expand Down Expand Up @@ -165,7 +165,7 @@ Docker:
--file Dockerfile-x \
--platform linux/amd64 \
--output type=docker \
--tag felddy/weewx:4.4.0 .
--tag felddy/weewx:4.5.1 .
```

## Debugging ##
Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ services:
weewx:
build:
args:
- VERSION=4.4.0
- VERSION=4.5.1
context: .
dockerfile: Dockerfile
image: felddy/weewx:4.4.0
image: felddy/weewx:4.5.1
init: true
restart: "no"
# devices:
Expand Down
2 changes: 1 addition & 1 deletion src/hashes
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
4ad1f8ff990ce86d80b3bc5448d5545e67e8b42ac14fc6a041b7734740e846c5 weewx-4.4.0.tar.gz
9650f9a4ce0f300a652d926820bc5b683a1826fd668c0e71413e88c772d7f056 weewx-4.5.1.tar.gz
9580cc3e3d617d20ffc42138712634850f37716a1257e9da0516407970765813 weewx-mqtt.zip
6229d493acd051730530ab50c235f57cc7f9c53dc1a8060c7b6e4817dd2bf66d weewx-interceptor.zip
2 changes: 1 addition & 1 deletion src/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "4.4.0"
__version__ = "4.5.1"

0 comments on commit 19dec66

Please sign in to comment.