mirror of
https://github.com/Mezeporta/Erupe.git
synced 2026-03-21 23:22:34 +01:00
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:
@@ -42,9 +42,9 @@ services:
|
||||
# build:
|
||||
# context: ../
|
||||
volumes:
|
||||
- ./config.json:/app/erupe/config.json
|
||||
- ./bin:/app/erupe/bin
|
||||
- ./savedata:/app/erupe/savedata
|
||||
- ./config.json:/app/config.json
|
||||
- ./bin:/app/bin
|
||||
- ./savedata:/app/savedata
|
||||
ports:
|
||||
# (Make sure these match config.json)
|
||||
- "53312:53312" #Sign V1
|
||||
|
||||
Reference in New Issue
Block a user