summaryrefslogtreecommitdiffstats
path: root/docker/docker-entrypoint.sh
blob: 42fe60b125668b5ce12838b1c4e5b3053536657f (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh
set -x
echo "Running entry point"
echo $@
## Run nginxi Web Server
/usr/sbin/nginx -c /etc/nginx/nginx.conf

# Execute arguments
echo >&2 $0: Continuing with "$@"...
exec "$@"