fix(docker): correct volume mount paths to match container WORKDIR

The Dockerfile sets WORKDIR to /app but docker-compose.yml mounted
volumes to /app/erupe/, causing "config not found" on startup.

Closes #162
This commit is contained in:
Houmgaor
2026-02-22 22:42:08 +01:00
parent e8963ce0cf
commit 2d4f9aeefa

View File

@@ -42,9 +42,9 @@ services:
# build: # build:
# context: ../ # context: ../
volumes: volumes:
- ./config.json:/app/erupe/config.json - ./config.json:/app/config.json
- ./bin:/app/erupe/bin - ./bin:/app/bin
- ./savedata:/app/erupe/savedata - ./savedata:/app/savedata
ports: ports:
# (Make sure these match config.json) # (Make sure these match config.json)
- "53312:53312" #Sign V1 - "53312:53312" #Sign V1