1
0
cloudlog-docker/docker-php-entrypoint
Kristóf Torma 56e97023e2
All checks were successful
continuous-integration/drone/push Build is passing
fix entrypoint
2024-04-04 20:56:42 +02:00

12 lines
163 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 "$@"