pin postgres to version 17 in example docker-compose files

This commit is contained in:
maxDorninger
2025-09-13 21:29:54 +02:00
parent c02061a99f
commit a941dee22f
2 changed files with 2 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
services:
db:
image: postgres:latest
image: postgres:17
restart: unless-stopped
container_name: postgres
volumes:

View File

@@ -13,7 +13,7 @@ services:
# Image folder
- ./images/:/data/images/
db:
image: postgres:latest
image: postgres:17
restart: unless-stopped
volumes:
- ./postgres:/var/lib/postgresql/data