This commit is contained in:
2026-05-26 16:50:34 +08:00
parent f4f2393f72
commit 165e97bff7
5 changed files with 198 additions and 0 deletions

19
docker-compose.yml Normal file
View File

@@ -0,0 +1,19 @@
version: '3.8'
services:
wsmud:
build: .
image: wsmud:latest
ports:
- "80:80"
- "4000:4000" # optional websocket port mapping if used
environment:
- WEB_PORT=80
- WS_PORT=4000
- MD5_PREFIX=change_me
- DESIV=change_me
- SESSION_SECRET=change_me
volumes:
- ./data:/app/data
- ./log:/app/log
- ./www:/app/www
restart: unless-stopped