modifs.mineures sans commentaires

This commit is contained in:
Jephté Clain 2024-10-18 15:32:42 +04:00
parent bb7428d80a
commit b763066f8a
1 changed files with 8 additions and 2 deletions

View File

@ -436,7 +436,7 @@ runphp: lancer une commande dans docker
USAGE
$MYNAME ci|cu|composer
$MYNAME --exec [options...] command [args...]
$MYNAME command [args...]
COMMANDES COMPOSER
ci
@ -477,8 +477,14 @@ OPTIONS
-e RUNPHP_MODE=docker
)
for arg in "${!PROXY_VARS[@]}"; do
args+=(--e "$arg=${PROXY_VARS[$arg]}")
args+=(-e "$arg=${PROXY_VARS[$arg]}")
done
if [ -n "$RUNPHP_STANDALONE" ]; then
args+=(
-e "RUNPHP_STANDALONE=1"
-e "RUNPHP_PROJDIR=$PROJDIR"
)
fi
for host in "${HOST_MAPPINGS[@]}"; do
args+=(--add-host "$host")
done