This commit is contained in:
Zengtudor 2024-11-01 21:54:14 +08:00
parent e738b46add
commit b7dcf1f110
2 changed files with 23 additions and 0 deletions

1
.env Normal file
View File

@ -0,0 +1 @@
MC_PATH=/root/mc

22
docker-compose.yml Normal file
View File

@ -0,0 +1,22 @@
services:
mc_web:
image: githubyumao/mcsmanager-web:latest
ports:
- "23333:23333"
volumes:
- /etc/localtime:/etc/localtime:ro
- $MC_PATH/web/data:/opt/mcsmanager/web/data
- $MC_PATH/web/logs:/opt/mcsmanager/web/logs
mc_daemon:
image: githubyumao/mcsmanager-daemon:latest
restart: unless-stopped
ports:
- "24444:24444"
environment:
- MCSM_DOCKER_WORKSPACE_PATH=$MC_PATH/daemon/data/InstanceData
volumes:
- /etc/localtime:/etc/localtime:ro
- $MC_PATH/daemon/data:/opt/mcsmanager/daemon/data
- $MC_PATH/daemon/logs:/opt/mcsmanager/daemon/logs
- /var/run/docker.sock:/var/run/docker.sock