This commit is contained in:
Mathias Teier
2025-06-24 19:11:38 +02:00
parent 5844728083
commit ff1c1f8f74
7 changed files with 368 additions and 0 deletions

View File

@ -0,0 +1,17 @@
services:
postgres:
image: postgres:17.4-alpine
restart: unless-stopped
environment:
POSTGRES_PASSWORD: n7ikJ1h61OFPt6oqlJ4IcR7tNoKB8OGI
PGDATA: /var/lib/postgresql/data/pgdata
networks:
- postgres_net
volumes:
- /var/lib/postgresql/data:/var/lib/postgresql/data
command: postgres -c 'max_connections=1000'
networks:
postgres_net:
name: postgres_net
driver: bridge