added Docker setup & moved database into instance folder

This commit is contained in:
2025-08-27 21:28:02 +02:00
parent 36f7f6d278
commit 1291970b51
9 changed files with 49 additions and 1979 deletions

11
docker-compose.yml Normal file
View File

@@ -0,0 +1,11 @@
services:
eve_structure:
build: .
container_name: eve_structure
restart: always
ports:
- 5000:5000
# store db and other stuff outside the container (skip init-db in Dockerfile)
volumes:
- ./instance:/app/instance