php/8.2/buster/apache/docker-php-entrypoint

10 lines
133 B
Plaintext
Raw Normal View History

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