Best project in Budapest KIWI event

This commit is contained in:
2022-03-08 14:03:22 +01:00
commit 3aa61277e9
17 changed files with 1441 additions and 0 deletions

18
docker-compose.yaml Normal file
View File

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