From e8211274bbf1f9195e67ec9412be399a73cbcfb8 Mon Sep 17 00:00:00 2001 From: winkidney Date: Thu, 19 Dec 2019 22:27:11 +0800 Subject: [PATCH] Fix: Fix collectstatic command --- docker/scripts/start.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/scripts/start.sh b/docker/scripts/start.sh index fc04774..f3f05fc 100755 --- a/docker/scripts/start.sh +++ b/docker/scripts/start.sh @@ -14,7 +14,7 @@ bash ${PROJECT_ROOT}/docker/scripts/bootstrap.sh # If static files don't exist collect them cd ${PROJECT_ROOT} -python manage.py collect --noinput --settings=pinry.settings.docker +python manage.py collectstatic --noinput --settings=pinry.settings.docker # If database doesn't exist yet create it if [ ! -f /data/production.db ]