konova/docker-entrypoint.sh
mpeltriaux bcde400096 WIP: Docker enhancement
* reduces all needed containers into a single one
* simplifies initial startup command by adding docker-entrypoint.sh
2022-04-26 08:55:07 +02:00

7 lines
195 B
Bash
Executable File

#!/bin/bash
# Start all needed services inside the container!
service nginx start
service redis-server start
celery -A konova worker --detach
gunicorn konova.wsgi:application --bind 0.0.0.0:8000