mirror of
https://gitea.mueller.network/extern/django-helpdesk.git
synced 2025-02-10 15:29:49 +01:00
Adapts docker container entrypoint to be launched more than once
This commit is contained in:
parent
cc6e597840
commit
eb4a4cd7b7
@ -7,8 +7,12 @@ set -o nounset
|
||||
pip3 install -e . --user || pip3 install -e .
|
||||
pip3 install -e demo --user || pip3 install -e demo
|
||||
python3 demo/manage.py migrate --noinput
|
||||
|
||||
if [ ! -e "/app/demo/demodesk/db.sqlite3" ]; then
|
||||
DJANGO_SUPERUSER_PASSWORD=Test1234 python3 demo/manage.py createsuperuser --username admin --email helpdesk@example.com --noinput
|
||||
# Install fixtures
|
||||
python3 demo/manage.py loaddata emailtemplate.json
|
||||
python3 demo/manage.py loaddata demo.json
|
||||
python3 demo/manage.py runserver 0:8080
|
||||
fi
|
||||
|
||||
python3 demo/manage.py runserver 0.0.0.0:8080
|
||||
|
Loading…
Reference in New Issue
Block a user