Skip to content
Snippets Groups Projects
Commit 11acebac authored by jurgenhaas's avatar jurgenhaas
Browse files

#144 Only set PHP_VERSION from docker compose file if it hasn't been...

#144 Only set PHP_VERSION from docker compose file if it hasn't been set by lakedrops config before
parent 6a6e09d5
No related branches found
No related tags found
1 merge request!42Merging develop into main
......@@ -9,6 +9,19 @@ if [[ "$L3D_CONFIG" != "[]" ]]; then
export PHP_VERSION=$V
fi
fi
if [[ "$L3D_COMPOSE" != "[]" ]]; then
V=$(yq .name $L3D_COMPOSE)
if [[ "$V" != "null" ]]; then
export COMPOSE_PROJECT_NAME=$V
fi
if [[ ! -n ${PHP_VERSION} ]]; then
V=$(yq .services.php.image $L3D_COMPOSE | cut -d':' -f 2)
if [[ "$V" != "null" ]]; then
export PHP_VERSION=$V
fi
fi
rm "$L3D_COMPOSE"
fi
COMMAND=start
if [[ -n "$1" ]]; then
......
#!/bin/bash
function getConfig() {
if [[ "$L3D_COMPOSE" != "[]" ]]; then
V=$(yq .name $L3D_COMPOSE)
if [[ "$V" != "null" ]]; then
COMPOSE_PROJECT_NAME=$V
fi
V=$(yq .services.php.image $L3D_COMPOSE | cut -d':' -f 2)
if [[ "$V" != "null" ]]; then
PHP_VERSION=$V
fi
rm "$L3D_COMPOSE"
fi
if [[ ! -n ${PHP_VERSION} ]]; then
while true; do
DEFAULT=8.2
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment