Files
torrentio/docker-compose.yml
2019-03-13 22:41:15 +01:00

16 lines
283 B
YAML

version: '3'
services:
database:
image: postgres
volumes:
- db-data:/var/lib/postgresql/data
ports:
- 5432:5432
environment:
POSTGRES_USER: torrentio
POSTGRES_PASSWORD: postgres
POSTGRES_DB: torrentio
volumes:
db-data:
driver: local