Sign inSign up

ricky9w/mindustry-server

By ricky9w

•Updated over 3 years ago

Run Mindustry Server in Docker

Image
0

2.3K

ricky9w/mindustry-server repository overview

⁠Mindustry Server

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)⁠

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

Tag summary

Content type

Image

Digest

sha256:b77b80dd0…

Size

79.3 MB

Last updated

over 3 years ago

docker pull ricky9w/mindustry-server