custom-php/entrypoint.sh.tmpl

11 lines
137 B
Cheetah
Raw Normal View History

2020-10-23 02:06:26 +00:00
#!/bin/bash
2021-07-14 11:28:31 +00:00
{{ if (env "PHP_EXTENSIONS") }}
docker-php-ext-install {{ env "PHP_EXTENSIONS" }}
2020-10-24 18:13:56 +00:00
{{ end }}
if [ -n "$@" ]; then
"$@"
fi
2021-07-14 11:28:31 +00:00