1
0
Fork 0
host-port-ingress-proxy/docker-entrypoint.sh

8 lines
184 B
Bash

#!/bin/sh
# Substitute environment variables in the NGINX config template
envsubst < /etc/nginx/nginx.conf.template > /etc/nginx/nginx.conf
# Start NGINX
exec nginx -g 'daemon off;'