me / start_services.sh
BinaryONe
InitialCommit -Modification in Dockerfile
fad515f
raw
history blame
215 Bytes
#!/bin/sh
# Start nginx in a separate shell (background)
echo "* Starting The Python Application *";
bash -c "/app/start_pyapps.sh; exec bash";
echo "* Starting The NGINX *";
nginx -g "daemon off;" > /dev/stdout;