Update PostgreSQL image to version 16-alpine in Docker Compose files

Changed the PostgreSQL image from "postgres:15" to "pgautoupgrade/pgautoupgrade:16-alpine" in both Caddy and Nginx Docker Compose files.
This commit is contained in:
Kavin 2024-07-11 15:53:43 +01:00
parent d07c22f079
commit 0613a116b6
No known key found for this signature in database
GPG Key ID: 6E4598CA5C92C41F
2 changed files with 2 additions and 2 deletions

View File

@ -45,7 +45,7 @@ services:
- piped-proxy:/var/run/ytproxy
container_name: caddy
postgres:
image: postgres:15
image: pgautoupgrade/pgautoupgrade:16-alpine
restart: unless-stopped
volumes:
- ./data/db:/var/lib/postgresql/data

View File

@ -46,7 +46,7 @@ services:
- "traefik.http.routers.piped.entrypoints=websecure"
- "traefik.http.services.piped.loadbalancer.server.port=8080"
postgres:
image: postgres:15
image: pgautoupgrade/pgautoupgrade:16-alpine
restart: unless-stopped
volumes:
- ./data/db:/var/lib/postgresql/data