Files
kiwi-budapest-best/docker-compose.yaml

19 lines
367 B
YAML

version: "3"
services:
redis:
image: redis
volumes:
- .data/redis:/data
ports:
- "6379:6379"
postgres:
image: postgres
environment:
POSTGRES_USER: pythonweekend
POSTGRES_PASSWORD: pythonweekend
POSTGRES_DB: pythonweekend
ports:
- "5432:5432"
volumes:
- .data/postgres-data:/var/lib/postgresql