mirror of
https://github.com/Mezeporta/Erupe.git
synced 2026-03-22 07:32:32 +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:
|
# 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
|
||||||
|
|||||||
Reference in New Issue
Block a user