[TOOLS] Fix missing exported variable in bin/configure
This commit is contained in:
parent
3b901745d5
commit
155f30e816
1
bin/configure
vendored
1
bin/configure
vendored
@ -396,6 +396,7 @@ export NGINX_HTTPS_PORT="${NGINX_HTTPS_PORT}"
|
|||||||
export PHP_PORT="${PHP_PORT}"
|
export PHP_PORT="${PHP_PORT}"
|
||||||
export DBMS="${DBMS}"
|
export DBMS="${DBMS}"
|
||||||
export BUILD_PHP="${BUILD_PHP}"
|
export BUILD_PHP="${BUILD_PHP}"
|
||||||
|
export LE_CERT="${LE_CERT}"
|
||||||
|
|
||||||
for SERV in ${DOCKER}; do
|
for SERV in ${DOCKER}; do
|
||||||
SERV=$(echo "${SERV}" | sed -r 's/"([^"]*)"/\1/')
|
SERV=$(echo "${SERV}" | sed -r 's/"([^"]*)"/\1/')
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
#!/usr/bin/sh
|
#!/usr/bin/sh
|
||||||
|
|
||||||
if [ $LE_CERT -ne 0 ]; then
|
if [ "${LE_CERT}" -ne 0 ]; then
|
||||||
cat <<EOF
|
cat <<EOF
|
||||||
php:
|
php:
|
||||||
build: docker/php
|
build: docker/php
|
||||||
|
Loading…
Reference in New Issue
Block a user