forked from TrueCloudLab/certificates
10 lines
160 B
Bash
10 lines
160 B
Bash
|
#!/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 "$@"
|