mpeltriaux
bcde400096
* reduces all needed containers into a single one * simplifies initial startup command by adding docker-entrypoint.sh
7 lines
195 B
Bash
Executable File
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 |