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

  1. version: "3.1"
  2. services:
  3. mindustry:
  4. image: "rlbr/mindustry-server:v3.5"
  5. container_name: "mindustry_server"
  6. hostname: "mindustry-server"
  7. ports:
  8. - "6567:6567/tcp" #host-port:internal-port
  9. - "6567:6567/udp"
  10. environment:
  11. - "JAVA_OPTS=-Xms1G -Xmx2G" #set memory limits
  12. command:
  13. - "load 1,host" # load save 1 and then host. see help for options
  14. tty: false
  15. stdin_open: true
  16. restart: always
  17. volumes:
  18. - "/data/mindustry:/var/lib/mindustry/.mindustry"