From ea3c31a867294ba1891c09c892169df65d9905f9 Mon Sep 17 00:00:00 2001 From: Anthony Bretaudeau Date: Wed, 27 Nov 2019 14:48:08 +0100 Subject: [PATCH] no need for -it option --- bootstrap_apollo.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap_apollo.sh b/bootstrap_apollo.sh index 4a602091..73fae9af 100755 --- a/bootstrap_apollo.sh +++ b/bootstrap_apollo.sh @@ -18,7 +18,7 @@ export GALAXY_SHARED_DIR=`pwd`/apollo_shared_dir mkdir -p "$GALAXY_SHARED_DIR" if ! [[ $SHOULD_LAUNCH_DOCKER -eq 0 ]]; then - docker run --memory=4g -d -it -p 8888:8080 -v `pwd`/apollo_shared_dir/:`pwd`/apollo_shared_dir/ -e "WEBAPOLLO_DEBUG=true" quay.io/gmod/apollo:latest + docker run --memory=4g -d -p 8888:8080 -v `pwd`/apollo_shared_dir/:`pwd`/apollo_shared_dir/ -e "WEBAPOLLO_DEBUG=true" quay.io/gmod/apollo:latest fi echo "[BOOTSTRAP] Waiting while Apollo starts up..."