Initial commit

This commit is contained in:
TheBeastLT
2019-03-13 22:40:09 +01:00
parent 99c2caf1aa
commit 5a122683d7
12 changed files with 3070 additions and 0 deletions

16
docker-compose.yml Normal file
View File

@@ -0,0 +1,16 @@
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