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.
17 lines
438 B
17 lines
438 B
version: "3.1"
|
|
|
|
services:
|
|
mindustry:
|
|
image: "thehuntedpie/mindustry:4.0-alpha-56"
|
|
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
|
|
tty: true
|
|
stdin_open: true
|
|
restart: always
|
|
volumes:
|
|
- "/data/mindustry:/var/lib/mindustry/.mindustry"
|