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