fix podman-compose + python (5/x)
This commit is contained in:
parent
180142bfe9
commit
7090529936
|
@ -361,4 +361,3 @@ if [[ ! -z ${podman_compose_path} ]]; then
|
|||
fi
|
||||
done
|
||||
fi
|
||||
}
|
||||
|
|
|
@ -67,7 +67,7 @@ echo "COLIBRI_REST_ENABLED=1" >> .env
|
|||
export listen_if
|
||||
export listen_port
|
||||
|
||||
python3.9 podman-compose --pod-args "--infra=true --infra-name=${project_name}_infra --share=" --podman-run-args "--requires=${project_name}_infra --env-file .env" up -d &&
|
||||
${my_podman_compose} --pod-args "--infra=true --infra-name=${project_name}_infra --share=" --podman-run-args "--requires=${project_name}_infra --env-file .env" up -d &&
|
||||
|
||||
# Wait for web to be up
|
||||
( podman container logs --tail=3 -f ${project_name}_web_1 2>&1 & ) | grep -q '^\[services.d\] done.$' &&
|
||||
|
|
|
@ -38,7 +38,7 @@ if ! podman image exists ${synapse_image}:${synapse_version}; then
|
|||
podman image pull ${synapse_image}:${synapse_version} || exit 1
|
||||
fi
|
||||
podman image pull ${postgres_image}:${postgres_version} &&
|
||||
python3.9 podman-compose --pod-args="--infra=true --infra-name=${project_name}_infra --share=" --podman-run-args "--requires=${project_name}_infra --env-file .env" up -d &&
|
||||
${my_podman_compose} --pod-args="--infra=true --infra-name=${project_name}_infra --share=" --podman-run-args "--requires=${project_name}_infra --env-file .env" up -d &&
|
||||
|
||||
end=$((SECONDS+120))
|
||||
while [ $SECONDS -lt $end ]; do
|
||||
|
|
|
@ -41,7 +41,7 @@ if ! podman image exists ${seafile_image}:${seafile_release}; then
|
|||
fi
|
||||
podman image pull docker.io/library/memcached:${memcached_release} &&
|
||||
podman image pull docker.io/library/mariadb:${mariadb_release} &&
|
||||
python3.9 podman-compose --pod-args="--infra=true --infra-name=${project_name}_infra --share=" --podman-run-args "--requires=${project_name}_infra --env-file .env" up -d &&
|
||||
${my_podman_compose} --pod-args="--infra=true --infra-name=${project_name}_infra --share=" --podman-run-args "--requires=${project_name}_infra --env-file .env" up -d &&
|
||||
echo -n "Waiting for seahub_settings.py " &&
|
||||
while [ ! -e `get_podman_volume_path ${datavolume}`/seafile/conf/seahub_settings.py ]; do
|
||||
echo -n "."
|
||||
|
|
|
@ -40,7 +40,7 @@ export listen_port
|
|||
if ! podman image exists ${service_image}:${service_version}; then
|
||||
podman image pull ${service_image}:${service_version} || exit 1
|
||||
fi
|
||||
python3.9 podman-compose --pod-args="--infra=true --infra-name=${project_name}_infra --share=" --podman-run-args "--requires=${project_name}_infra --env-file .env" up -d &&
|
||||
${my_podman_compose} --pod-args="--infra=true --infra-name=${project_name}_infra --share=" --podman-run-args "--requires=${project_name}_infra --env-file .env" up -d &&
|
||||
echo -n "Waiting for vaultwarden to finish starting " &&
|
||||
( podman container logs -f ${container_name} 2>&1 & ) | grep -q 'Rocket has launched from ' &&
|
||||
echo "OK" &&
|
||||
|
|
|
@ -35,7 +35,7 @@ if ! podman image exists ${wp_image}:${wp_version}; then
|
|||
fi
|
||||
podman image pull ${mysql_image}:${mysql_version} &&
|
||||
|
||||
python3.9 podman-compose --pod-args="--infra=true --infra-name=${project_name}_infra --share=" --podman-run-args "--requires=${project_name}_infra --env-file .env" up -d &&
|
||||
${my_podman_compose} --pod-args="--infra=true --infra-name=${project_name}_infra --share=" --podman-run-args "--requires=${project_name}_infra --env-file .env" up -d &&
|
||||
sleep 10 # TODO : wait for healthckeck on mariadb
|
||||
shred -u .env &&
|
||||
podman pod stop ${pod_name}
|
||||
|
|
Loading…
Reference in a new issue