15 lines
313 B
YAML
15 lines
313 B
YAML
services:
|
|
postgres:
|
|
image: postgres:16-alpine
|
|
environment:
|
|
POSTGRES_DB: graphs
|
|
POSTGRES_USER: postgres
|
|
POSTGRES_PASSWORD: postgres
|
|
ports:
|
|
- "5432:5432"
|
|
volumes:
|
|
- production-orders-sync-postgres:/var/lib/postgresql/data
|
|
|
|
volumes:
|
|
production-orders-sync-postgres:
|