We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
setup
1 parent 2e2fb42 commit a6b35d5Copy full SHA for a6b35d5
build.sh
@@ -1,7 +1,4 @@
1
-# -- running setup script
2
-bash run/setup.sh
3
-
4
-# -- getting all docker-compose files
+# -- getting docker-compose files
5
DC_FILES="docker-compose.main.yml"
6
for F in `find ./services -type f -maxdepth 1 -name "docker-compose*.yml"`
7
do
run/setup.sh setup.shrun/setup.sh renamed to setup.sh
@@ -1,11 +1,11 @@
-# -- running system bash files
-bash run/acme.sh
-bash run/data.sh
# -- running services' bash files
+BASH_SYSTEM_FILES="bash run/acme.sh; bash run/data.sh;"
BASH_FILES=""
for F in `find ./run/services -type f -maxdepth 1 -name "*.sh"`
8
9
BASH_FILES="$BASH_FILES bash $F;"
10
done
11
-eval $BASH_FILES
+eval "$BASH_SYSTEM_FILES $BASH_FILES"
+
+# -- .env.example -> .env
+mv .env.example .env
0 commit comments