From: Guillaume Pellerin Date: Thu, 23 Aug 2018 16:50:45 +0000 (+0200) Subject: Fix restore_db option X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=e8e0c2897f07c70f4723b359d2957faeff335ef4;p=docker-django-scripts.git Fix restore_db option --- diff --git a/dev/pull_data.sh b/dev/pull_data.sh index e825dcc..f52eb5f 100755 --- a/dev/pull_data.sh +++ b/dev/pull_data.sh @@ -10,5 +10,6 @@ git pull # Restore database if [ "$1" = "--restore-db" ]; then - docker-compose run db /srv/bin/dev/restore_db.sh + cd .. + bin/dev/restore_db_only.sh fi