Files
myos/docker/httpd/alpine/docker-entrypoint.sh
T
Yann Autissier 1d1b5156bc add nginx proxy
2022-12-15 15:20:12 +00:00

10 lines
153 B
Bash
Executable File

#!/bin/sh
set -euo pipefail
set -o errexit
trap 'kill -SIGQUIT $PID' INT
# Launch httpd
[ $# -eq 0 ] && httpd-foreground || exec "$@" &
PID=$! && wait