From ccdf7f59172deba1e3b0b409cf51830b795d205f Mon Sep 17 00:00:00 2001 From: thehuntedpie Date: Tue, 25 Sep 2018 12:22:02 +0300 Subject: [PATCH] fix quotes and indentation on docker-compose.yml --- build.sh | 2 ++ docker-compose.yml | 10 +++++----- 2 files changed, 7 insertions(+), 5 deletions(-) create mode 100755 build.sh 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"