Skip to content

Commit

Permalink
docker startup skip db
Browse files Browse the repository at this point in the history
  • Loading branch information
joelclems committed Sep 12, 2023
1 parent 9398e30 commit a6ec227
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion install/assets/docker_startup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,10 @@ set -o nounset


# creer les tables et peupler la base
if [ "${GEONATURE_POPULATE_DB}" = true ]; then
if [ "${GEONATURE_SKIP_DB}" = true ]; then
# pass
:
else
. /populate_db.sh
if [ "$usershub" = true ];
then
Expand Down

0 comments on commit a6ec227

Please sign in to comment.