* optimizes nginx.conf * better proxy pipelining * optimizes Dockerfile * smaller resulting image * faster rebuilding due to reusing of existing layers * optimizes docker-entrypoint.sh * better startup performance * better compatibility with docker engine
27 lines
753 B
Bash
Executable File
27 lines
753 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e # Beende Skript bei Fehlern
|
|
set -o pipefail # Fehler in Pipelines nicht ignorieren
|
|
|
|
# Starte Redis
|
|
redis-server --daemonize yes
|
|
|
|
# Starte Celery Worker im Hintergrund
|
|
celery -A konova worker --loglevel=info &
|
|
|
|
# Starte Nginx als Hintergrundprozess
|
|
nginx -g "daemon off;" &
|
|
|
|
# Setze Gunicorn Worker-Anzahl (Standard: (2*CPUs)+1)
|
|
WORKERS=${GUNICORN_WORKERS:-$((2 * $(nproc) + 1))}
|
|
|
|
# Stelle sicher, dass Logs existieren
|
|
mkdir -p /var/log/gunicorn
|
|
touch /var/log/gunicorn/access.log /var/log/gunicorn/error.log
|
|
|
|
# Starte Gunicorn als Hauptprozess
|
|
exec gunicorn --workers="$WORKERS" konova.wsgi:application \
|
|
--bind=0.0.0.0:8000 \
|
|
--access-logfile /var/log/gunicorn/access.log \
|
|
--error-logfile /var/log/gunicorn/error.log
|