Files
chat-app/compose.yaml
2025-06-08 21:29:06 +02:00

10 lines
215 B
YAML

services:
postgres:
container_name: 'chat-app-pg'
image: 'postgres:17'
restart: 'unless-stopped'
volumes:
- './postgres:/var/lib/postgresql/data'
environment:
POSTGRES_PASSWORD: 'pg'