Create docker image

This commit is contained in:
Sascha Ißbrücker
2019-07-03 17:18:29 +02:00
parent fdcd9cb42c
commit d57ea27ba3
17 changed files with 137 additions and 12 deletions

14
bootstrap.sh Executable file
View File

@@ -0,0 +1,14 @@
#!/usr/bin/env bash
# Bootstrap script that gets executed in new Docker containers
# Set host name in settings if it was passed as environment variable
if [[ -v HOST_NAME ]]
then
printf "ALLOWED_HOSTS=['%s']" $HOST_NAME > ./siteroot/settings_custom.py
fi
# Run database migration
python manage.py migrate
# Start uwsgi server
uwsgi uwsgi.ini