Synapse : image to gitea?

This commit is contained in:
Gitouche 2022-08-12 20:34:42 +02:00
parent e6a5b8168c
commit b3af292266
5 changed files with 10 additions and 4 deletions

View File

@ -11,6 +11,7 @@ matrix:
stage: test
script:
- cd podman-matrix
- ./ci_build-images.sh
- GARBAYE_MATRIX_POSTGRES_PASSWORD=WHATEVERCIDBPASSWORD GARBAYE_MATRIX_ENV_LISTENPORT=18086 ./05_freshinstall.sh
- ./20_enable.sh
- ./30_start.sh && sleep 10

View File

@ -15,7 +15,7 @@ if podman volume exists ${confvolume} || podman volume exists ${dbvolume}; then
exit 1
fi
source ${ABSDIR}/zz_build-images.sh &&
podman image pull ${synapse_image}:${synapse_version} &&
podman image exists ${synapse_image}:${synapse_version} &&
podman volume create ${confvolume} &&
podman volume create ${dbvolume} &&

View File

@ -20,7 +20,8 @@ if ! podman volume exists ${dbvolume} ; then
exit 1
fi
source ${ABSDIR}/zz_build-images.sh &&
podman image pull ${synapse_image}:${synapse_version} &&
podman image exists ${synapse_image}:${synapse_version} &&
podman pull ${postgres_image}:${postgres_version} &&
podman pod create --publish ${listen_if}:${listen_port}:8008 --name ${pod_name} &&
podman run -d --name ${db_container_name} --pod ${pod_name} \

View File

@ -23,4 +23,8 @@ if ! podman image exists ${synapse_image}:${synapse_version}; then
podman rmi docker.io/moby/buildkit:latest
}
rm -rf ${buildfolder}
fi
else
echo "Image ${synapse_image}:${synapse_version} already built"
fi &&
oci_push_to_registry ${synapse_image}:${synapse_version}

View File

@ -3,7 +3,7 @@
pod_name='podman-matrix'
service_name="pod-${pod_name}.service"
#version='latest'
synapse_image="localhost/matrixdotorg/synapse"
synapse_image="git.garbaye.fr/garbaye/matrixdotorg-synapse"
synapse_version='v1.63.1'
postgres_image="docker.io/library/postgres"
postgres_version='11.14'