php/7.3-rc/stretch/apache/docker-php-entrypoint
2018-08-01 14:10:37 +02:00

10 lines
133 B
Bash
Executable File

#!/bin/sh
set -e
# first arg is `-f` or `--some-option`
if [ "${1#-}" != "$1" ]; then
set -- apache2-foreground "$@"
fi
exec "$@"