2021-06-14 10:42:59 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
pod_name='podman-matrix'
|
|
|
|
service_name="pod-${pod_name}.service"
|
|
|
|
#version='latest'
|
|
|
|
synapse_image="docker.io/matrixdotorg/synapse"
|
2022-01-06 21:12:35 +00:00
|
|
|
synapse_version='v1.49.2'
|
2021-06-14 10:42:59 +00:00
|
|
|
postgres_image="docker.io/library/postgres"
|
2022-01-06 21:12:35 +00:00
|
|
|
postgres_version='11.14'
|
2022-01-28 12:37:31 +00:00
|
|
|
upstream_images="${synapse_image} ${postgres_image}"
|
2021-06-14 10:42:59 +00:00
|
|
|
confvolume='matrixdotorg_synapse-data'
|
|
|
|
dbvolume='matrixdotorg_synapse-pgsql'
|
|
|
|
container_name='synapse'
|
|
|
|
db_container_name='synapse-db'
|
2022-02-11 12:10:08 +00:00
|
|
|
listen_if="${GARBAYE_MATRIX_ENV_LISTENIF:-127.0.0.1}"
|
|
|
|
listen_port="${GARBAYE_MATRIX_ENV_LISTENPORT:-8086}"
|
2021-07-12 19:40:44 +00:00
|
|
|
GARBAYE_MATRIX_DOMAIN="${GARBAYE_MATRIX_DOMAIN:-garbaye.fr}"
|
2021-07-01 17:28:13 +00:00
|
|
|
GARBAYE_MATRIX_URL="${GARBAYE_MATRIX_URL:-https://matrix.garbaye.fr}"
|
2021-07-12 19:40:44 +00:00
|
|
|
envvars='GARBAYE_MATRIX_POSTGRES_PASSWORD GARBAYE_MATRIX_DOMAIN GARBAYE_MATRIX_URL'
|