php/8.1-rc/bullseye/apache/docker-php-entrypoint

10 lines
133 B
Plaintext
Raw Normal View History

2022-02-04 02:25:14 +01:00
#!/bin/sh
set -e
# first arg is `-f` or `--some-option`
if [ "${1#-}" != "$1" ]; then
set -- apache2-foreground "$@"
fi
exec "$@"