Files
11note-docker-nginx/rootfs/usr/local/bin/entrypoint.sh
2023-05-05 21:08:52 +02:00

8 lines
103 B
Bash

#!/bin/ash
if [ -z "$1" ]; then
set -- "nginx" \
-g \
'daemon off;'
fi
exec "$@"