1 Commits
17 .. 18
Author SHA1 Message Date
EmilCh c9ce241ec8 mer. 19 août 2026 18:06:07 CEST 2026-08-19 18:06:07 +02:00
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 postgresql17-client bash
RUN apk add --no-cache postgresql18-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: registry.cheriches.eu/pgsql-backup:17-1787155592
image: registry.cheriches.eu/pgsql-backup:18-1787155527
restart: always
volumes:
- ./backup:/backup
+1 -1
View File
@@ -1,4 +1,4 @@
#!/usr/bin/env bash
export TAG=17-$(date '+%s')
export TAG=18-$(date '+%s')
docker compose build --push
echo "The tag to use is: $TAG"