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. 10
      docker-compose.yml

2
build.sh

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

10
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"
Loading…
Cancel
Save