mirror of
https://github.com/smallstep/certificates.git
synced 2024-11-17 15:29:21 +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 "$@"
|