2 Commits
Author SHA1 Message Date
EmilCh b3509cecdd mer. 19 août 2026 18:07:43 CEST 2026-08-19 18:07:43 +02:00
EmilCh 1f1673abc1 mer. 19 août 2026 18:03:57 CEST 2026-08-19 18:03:57 +02:00
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
FROM alpine:latest FROM alpine:latest
RUN apk add --no-cache postgresql17-client bash RUN apk add --no-cache postgresql16-client bash
COPY root / COPY root /
RUN chmod +x /*.sh RUN chmod +x /*.sh
EXPOSE 80 EXPOSE 80
+1 -1
View File
@@ -2,7 +2,7 @@ Example docker-compose.yml file
``` ```
services: services:
backup: backup:
image: registry.cheriches.eu/pgsql-backup:17-1787155592 image: registry.cheriches.eu/pgsql-backup:16-1787155634
restart: always restart: always
volumes: volumes:
- ./backup:/backup - ./backup:/backup
+1 -1
View File
@@ -1,4 +1,4 @@
#!/usr/bin/env bash #!/usr/bin/env bash
export TAG=17-$(date '+%s') export TAG=16-$(date '+%s')
docker compose build --push docker compose build --push
echo "The tag to use is: $TAG" echo "The tag to use is: $TAG"