Add environment variables to docker-compose.yml

This commit is contained in:
JeremyStar™ 2024-01-26 00:13:54 +01:00
parent 2960d76ead
commit 80c50f557d

View file

@ -8,5 +8,11 @@ services:
stop_grace_period: 10s stop_grace_period: 10s
volumes: volumes:
- ./server:/data - ./server:/data
environment:
- MCSD_ENFORCE_FRESH_CACHES=false # cleans all caches on startup, useful if you experience issues
- MCSD_FORCE_UPGRADE=true # updates all chunks to the latest version, if possible. will slow down startup time on upgrade but will significantly increase server performance during runtime
- MCSD_SAFEMODE=false # disables all datapacks
- MCSD_AUTO_RESTART=true # restarts the server automatically if it exists
- MCSD_JAVA_VERSION=17 # available arw: 17, 11 and 8
ports: ports:
- 25565:25565 - 25565:25565