Inital Commit

This commit is contained in:
2026-02-22 00:50:51 +00:00
commit 4c24b141fe
28 changed files with 1458 additions and 0 deletions

19
docker-compose.yml Normal file
View File

@@ -0,0 +1,19 @@
version: '3.8'
services:
app:
build:
context: .
dockerfile: Dockerfile
container_name: sim-link-server
ports:
- "8080:8080"
volumes:
# Mount results explicitly to view simulation outcomes and process new files.
- ./results:/app/results
# Mount the DB directory to retain data. Because our Docker WORKDIR is /app/server,
# the sim-link.db will be saved in /app/server/sim-link.db, matching this volume mapping.
- ./server:/app/server
restart: unless-stopped
environment:
- PORT=8080