Files
php-docker-library/8.1-rc/buster/apache/docker-php-entrypoint
2022-06-23 08:51:31 -07:00

10 lines
133 B
Bash
Executable File
Generated

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