fix: correct volume mount path for database persistence
All checks were successful
CI / Deploy / test (push) Successful in 14s
CI / Deploy / lint (push) Successful in 25s
CI / Deploy / deploy (push) Successful in 33s

The container runs from / so data/games.db resolves to /data/games.db,
but the volume was mounted at /app/data.
This commit is contained in:
Ryan Hamamura
2026-03-03 08:57:11 -10:00
parent 65dc672186
commit ac2492e7c1

View File

@@ -11,4 +11,4 @@ services:
environment: environment:
- PORT=8080 - PORT=8080
volumes: volumes:
- ./data:/app/data - ./data:/data