This repository has been archived on 2021-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
custom-php/entrypoint.sh.tmpl

11 lines
137 B
Cheetah
Raw Permalink 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