This commit is contained in:
2021-12-22 20:21:24 +01:00
parent a24d39d657
commit a8bd48e09f
17 changed files with 344 additions and 31 deletions

18
docker-compose.yml Normal file
View File

@@ -0,0 +1,18 @@
version: "3"
services:
db:
image: postgres
restart: always
volumes:
- db_data:/var/lib/postgresql/data/pgdata
ports:
- 5432:5432
environment:
PGDATA: /var/lib/postgresql/data/pgdata
POSTGRES_USER: downloader
POSTGRES_PASSWORD: downloadersecret
POSTGRES_DB: downloader
volumes:
db_data: {}