Skip to content

Latest commit

 

History

History
37 lines (30 loc) · 1.67 KB

README.md

File metadata and controls

37 lines (30 loc) · 1.67 KB

Mindustry Server in Docker optimized for Unraid

This is a Basic Mindustry Server.

UPDATE NOTICE: If you set the GAME_V to 'latest' the container will always check on startup for a new version or you can set it to whatever version you preferr eg: '100', '90',... (without quotes, upgrading and downgrading also possible).

WEB CONSOLE: You can connect to the Minecraft console by opening your browser and go to HOSTIP:9031 (eg: 192.168.1.1:9031) or click on WebUI on the Docker page within Unraid.

Env params

Name Value Example
DATA_DIR Folder for gamefile /mindustry
GAME_V Preferred game version goes here (set to 'latest' to download the latest) latest
SRV_NAME Servername goes here (you need to set a servername) DockerMindustry
GAME_PARAMS Extra startup Parameters if needed (leave empty if not needed)
EXTRA_PARAMS Remove to support older versions from Mindustry (only change if you know what you are doing!) config
UMASK Permissions for newly created files. Don't change unless you are knowing what you are doing! 000
UID User Identifier 99
GID Group Identifier 100

Run example

docker run --name Mindustry -d \
	-p 6567:6567 -p 6567:6567/udp -p 9031:8080 \
	--env 'GAME_V=latest' \
	--env 'EXTRA_PARAMS=config ' \
	--env 'SRV_NAME=DockerMindustry' \
	--env 'UMASK=000' \
	--env 'UID=99' \
	--env 'GID=100' \
	--volume /mnt/user/appdata/mindustry:/mindustry \
	ich777/mindustry-server

This Docker was mainly edited for better use with Unraid, if you don't use Unraid you should definitely try it!