Browse Source

fix quotes and indentation on docker-compose.yml

pull/1/head
thehuntedpie 7 years ago
parent
commit
ccdf7f5917
  1. 2
      build.sh
  2. 8
      docker-compose.yml

2
build.sh

@ -0,0 +1,2 @@
#!/bin/bash
docker-compose -f docker-compose.build.yml build mindustry

8
docker-compose.yml

@ -1,11 +1,11 @@
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

Loading…
Cancel
Save