this should work

This commit is contained in:
chabad360 2018-08-02 16:50:33 -07:00
parent 4acb2cb6ca
commit 6013270c23

6
dbench
View file

@ -81,9 +81,9 @@ while true; do
shift shift
done done
if $setup; then if [ $setup == 1 ]; then
docker-compose build docker-compose build
if $d; then if [ $d == 1 ]; then
docker-compose -d docker-compose -d
else else
docker-compose docker-compose
@ -91,7 +91,7 @@ if $setup; then
exit 0 exit 0
fi fi
if $init; then if [ $init == 1 ]; then
if ! $site; then if ! $site; then
site="site1.local" site="site1.local"
fi fi