dontpull : matrix/synapse

This commit is contained in:
Gitouche 2022-11-13 14:08:31 +01:00
parent c941d36075
commit 662ec75f26

View file

@ -20,8 +20,9 @@ if ! podman volume exists ${dbvolume} ; then
exit 1 exit 1
fi fi
podman image pull ${synapse_image}:${synapse_version} && if ! podman image pull ${synapse_image}:${synapse_version}; then
podman image exists ${synapse_image}:${synapse_version} && podman image pull ${synapse_image}:${synapse_version} || exit 1
fi
podman pull ${postgres_image}:${postgres_version} && podman pull ${postgres_image}:${postgres_version} &&
podman network create ${project_name}_default && podman network create ${project_name}_default &&
podman pod create --name ${pod_name} --infra=true --infra-name=${project_name}_infra --share='' && podman pod create --name ${pod_name} --infra=true --infra-name=${project_name}_infra --share='' &&