Skip to content

ricky9w/mindustry-server-docker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Mindustry Server

Run mindustry server with docker. This repository checks the latest upstream releases daily and builds docker images accordingly.

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

DockerHub:

ricky9w/mindustry-server - Docker Image | Docker Hub

Refer:

Anuken/Mindustry: The automation tower defense RTS (github.com)

frankbaele/mindustry: Mindustry server docker (github.com)

Releases

No releases published

Packages

No packages published