mer. 19 août 2026 18:01:30 CEST

This commit is contained in:
EmilCh
2026-08-19 18:01:30 +02:00
parent 49ca0434f2
commit f399df7df8
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -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
+1 -1
View File
@@ -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
+1 -1
View File
@@ -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"