dockerfiles/base/php-nginx/php/7.4-alpine/conf/bin/usr-bin/docker-provision

10 lines
366 B
Bash

#!/usr/bin/env bash
set -o pipefail # trace ERR through pipes
set -o errtrace # trace ERR through 'time command' and other functions
set -o nounset ## set -u : exit the script if you try to use an uninitialised variable
set -o errexit ## set -e : exit the script if any statement returns a non-true return value
# wrapper
exec /opt/docker/bin/provision "$@"