10 lines
215 B
YAML
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'
|