nginx-certbot/run.sh
2021-06-10 05:53:47 +02:00

15 lines
165 B
Bash
Executable File

#!/bin/sh
nginx
# if argument(s) given - execute argument(s) in container. Otherwise loop.
if [ "$#" -gt 0 ]; then
exec $@
else
while :;
do
sleep 1
done
fi