Files
11note-docker-nginx/rootfs/usr/local/bin/entrypoint.sh
2022-11-02 00:17:07 +01:00

8 lines
98 B
Bash

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