You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

19 lines
515 B

version: "3.1"
services:
mindustry:
image: "rlbr/mindustry-server:v3.5"
container_name: "mindustry_server"
hostname: "mindustry-server"
ports:
- "6567:6567/tcp" #host-port:internal-port
- "6567:6567/udp"
environment:
- "JAVA_OPTS=-Xms1G -Xmx2G" #set memory limits
command:
- "load 1,host" # load save 1 and then host. see help for options
tty: false
stdin_open: true
restart: always
volumes:
- "/data/mindustry:/var/lib/mindustry/.mindustry"