dontpull : jitsi

This commit is contained in:
Gitouche 2022-11-13 14:07:31 +01:00
parent 2498c1ea5f
commit c941d36075

View file

@ -15,7 +15,9 @@ if [[ -d ${confvolume} ]]; then
fi fi
for image in ${upstream_images}; do for image in ${upstream_images}; do
podman image pull ${image}:${version} || exit 1 if ! podman image exists ${image}:${version}; then
podman image pull ${image}:${version} || exit 1
fi
done && done &&
mkdir -p ${confvolume}/{web/letsencrypt,web/crontabs,transcripts,prosody/config,prosody/prosody-plugins-custom,jicofo,jvb,jigasi,jibri} mkdir -p ${confvolume}/{web/letsencrypt,web/crontabs,transcripts,prosody/config,prosody/prosody-plugins-custom,jicofo,jvb,jigasi,jibri}