diff --git a/install/docker-linux.sh b/install/docker-linux.sh index e8ac58d..ebb4d9a 100755 --- a/install/docker-linux.sh +++ b/install/docker-linux.sh @@ -9,7 +9,12 @@ mkdir -p ./uploads/thumbnails/ mkdir -p ./share/ # Ensure that files config.json, auth.json, & data.json exist -for value in config.json auth.json data.json do if [ ! -f $value ]; then touch $value; fi; done +for value in config.json auth.json data.json +do + if [ ! -f $value ]; then + touch $value + fi +done # Wait for user to confirm echo "Continuing will run docker-compose. Continue? (Press Ctrl+C to abort)"