Run mindustry server with docker.
Run directly:
docker run -ti -p 6567:6567/tcp -p 6567:6567/udp ricky9w/mindustry-server
Run with docker-compose:
---
services:
mindustry:
image: ricky9w/mindustry-server
# enable tty and stdin to make `docker attach` work
tty: true
stdin_open: true
# trust no one :)
read_only: true
cap_drop:
- ALL
ports:
- "6567:6567"
restart: always
# map config to host machine
volumes:
- ./config:/config
GitHub repo:
ricky9w/mindustry-server-docker: Mindustry Server Docker Image (github.com)
Refer:
Anuken/Mindustry: The automation tower defense RTS (github.com)
Content type
Image
Digest
sha256:b77b80dd0…
Size
79.3 MB
Last updated
over 3 years ago
docker pull ricky9w/mindustry-server