php/7.4/buster/apache/docker-php-entrypoint
2019-11-28 08:25:42 +01: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 "$@"