diff --git a/Dockerfile b/Dockerfile index 6c0827b..d2768be 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ FROM alpine:latest -RUN apk add --no-cache postgresql16-client bash +RUN apk add --no-cache postgresql17-client bash COPY root / RUN chmod +x /*.sh EXPOSE 80 diff --git a/README.md b/README.md index 6f55f75..1f22b3f 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ Example docker-compose.yml file ``` services: backup: - image: pgsql-backup:16-main + image: pgsql-backup:17-main restart: always volumes: - ./backup:/backup diff --git a/build.sh b/build.sh index d05a794..a10be81 100755 --- a/build.sh +++ b/build.sh @@ -1,4 +1,4 @@ #!/usr/bin/env bash -export TAG=16-$(date '+%s') +export TAG=17-$(date '+%s') docker compose build --push echo "The tag to use is: $TAG"