diff --git a/build.sh b/build.sh new file mode 100755 index 0000000..eee3ea5 --- /dev/null +++ b/build.sh @@ -0,0 +1,2 @@ +#!/bin/bash +docker-compose -f docker-compose.build.yml build mindustry diff --git a/docker-compose.yml b/docker-compose.yml index 525a9ad..6f1c758 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,13 +1,13 @@ -version: '3.1' +version: "3.1" services: mindustry: - image: thehuntedpie/mindustry:4.0-alpha-56 + image: "thehuntedpie/mindustry:4.0-alpha-56" ports: - - '6567:6567/tcp' - - '6567:6567/udp' + - "6567:6567/tcp" + - "6567:6567/udp" tty: true stdin_open: true restart: always volumes: - - "/data/mindustry:/root/.mindustry" + - "/data/mindustry:/root/.mindustry"