1
0
cloudlog-docker/docker-php-entrypoint
Kristóf Torma 5a2a297ce3
All checks were successful
continuous-integration/drone/push Build is passing
overwrite entrypoint
2024-04-04 20:48:15 +02:00

12 lines
161 B
Bash

#!/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 "$@"