1
0
cloudlog-docker/docker-php-entrypoint

12 lines
161 B
Plaintext
Raw Normal View History

2024-04-04 20:48:15 +02:00
#!/bin/sh
set -e
cp -r /var/www/cloudlog /var/www/html
# first arg is `-f` or `--some-option`
if [ "${1#-}" != "$1" ]; then
set -- php-fpm "$@"
fi
exec "$@"