mirror of
https://github.com/smallstep/certificates.git
synced 2024-11-19 09:25:37 +00:00
10 lines
135 B
Bash
10 lines
135 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
# Wait for renewer
|
||
|
sleep 10
|
||
|
|
||
|
# watch for the update of the cert and reload nginx
|
||
|
/certwatch.sh &
|
||
|
|
||
|
# Run docker CMD
|
||
|
exec "$@"
|