Add docker compose build file

This commit is contained in:
pstruebi
2024-06-23 21:20:03 +02:00
parent 41e8a75d5a
commit 2dfd6fbbc8
8 changed files with 74 additions and 7 deletions

14
docker-compose.yaml Normal file
View File

@@ -0,0 +1,14 @@
services:
app:
build: .
ports:
- "8000:8000"
network_mode: host
volumes:
- sqlite-database:/app/database
working_dir: /app
command: sh ./run_production_server.sh
volumes:
sqlite-database: