price-point-api/docker-compose.yml
2026-05-25 19:11:54 +03:00

13 lines
No EOL
237 B
YAML

services:
db:
image: postgres:17
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: password
ports:
- "5432:5432"
volumes:
- postgres_data:/var/lib/postgresql/data
volumes:
postgres_data: