cron, db, cache and migrations

This commit is contained in:
2022-02-13 18:09:26 +01:00
parent 5f36bdb8a6
commit e03efbf09c
8 changed files with 1638 additions and 2 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: serverctl
POSTGRES_PASSWORD: serverctlsecret
POSTGRES_DB: serverctl
volumes:
db_data: {}