certificates/autocert/examples/hello-mtls/envoy/entrypoint.sh
2019-02-07 15:30:37 -08:00

10 lines
No EOL
160 B
Bash
Executable file

#!/bin/sh
# start hello world app
python3 /src/server.py &
# watch for the update of the cert and reload nginx
/src/certwatch.sh &
# Run docker CMD
exec "$@"