From 3f406b0f05a0480a1e59f91c002038ee4e9c204f Mon Sep 17 00:00:00 2001 From: Jan Tuomi Date: Thu, 6 Apr 2017 18:22:03 +0300 Subject: [PATCH] Fix DOCKER_OPTS --- scripts/autoinstall.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/scripts/autoinstall.sh b/scripts/autoinstall.sh index 5ab9ef5..3a4a7f5 100755 --- a/scripts/autoinstall.sh +++ b/scripts/autoinstall.sh @@ -1,5 +1,8 @@ #!/bin/bash +export DOCKER_OPTS="" +PROJECT="web20" + echo "SIKWEB 2.0 Dockerific install script" echo "====================================" @@ -24,7 +27,6 @@ then chmod +x /usr/local/bin/docker-compose fi -PROJECT="web20_site" echo "Building db container..." docker-compose -p "$PROJECT" build db || { echo "Failed to build db!"; exit 1; }