*a5b719c✨ allow configuration of a custom translation service (such as libretranslate) (#1946) *d6251b7feat(jaas): updated jaas URLs (#1944) *2a87a50fix(jigasi): ensure tpl doesn't fail even if no JIGASI_SIP_PASSWORD is set (#1943) *5164db7feat(jigasi): config for jigasi in visitor mode (#1942) *a88c6e4feat(prosody): allow s2s whitelist additions (#1940) *b89c328fix(prosody): install the new version of jitsi-contrib/prosody-plugins *0b75cd1fix(transcriber): fix bosh and xmpp connections from jigasi to prosody (#1934) *4369907feat(jibri,jicofo,jigasi,jvb,prosody,web): trim empty list entries when splitting with splitList to allow trailing comma (#1932) *c58a9e5feat(prosody): allow components access even after max participants is reached (#1930) *5e1fcd8fix(prosody): default value for PROSODY_MODE (#1929) *7b7f101feat(prosody): new flags to disable incoming client and server conection limits (#1928) *02aa4f1fix: Only set app_secret when defined. (#1925) *df0bb25fix(prosody): install the new version of jitsi-contrib/prosody-plugins (#1926) *ff0cdc7fix(prosody): tpl errors on container startup due to missing variables (#1924) *905943dfeat(prosody) update prosody contrib plugins from 20240117 to 20240817 *1f2b14dfeat(prosody): enable recorder domain for s2s to visitor nodes to allow transcription support (#1905) *c9b6679feat(web): mount load-test volume to expose load-test client from host (#1910) *b726312feat(jicofo) add config parameter for ENABLE_MODERATOR_CHECKS *2d39624misc: working on unstable
69 lines
2.3 KiB
YAML
69 lines
2.3 KiB
YAML
version: '3.5'
|
|
|
|
services:
|
|
# SIP gateway (audio)
|
|
jigasi:
|
|
image: jitsi/jigasi:${JITSI_IMAGE_VERSION:-stable-9779}
|
|
restart: ${RESTART_POLICY:-unless-stopped}
|
|
ports:
|
|
- '${JIGASI_PORT_MIN:-20000}-${JIGASI_PORT_MAX:-20050}:${JIGASI_PORT_MIN:-20000}-${JIGASI_PORT_MAX:-20050}/udp'
|
|
volumes:
|
|
- ${CONFIG}/jigasi:/config:Z
|
|
environment:
|
|
- AUTOSCALER_SIDECAR_KEY_FILE
|
|
- AUTOSCALER_SIDECAR_KEY_ID
|
|
- AUTOSCALER_SIDECAR_GROUP_NAME
|
|
- AUTOSCALER_SIDECAR_HOST_ID
|
|
- AUTOSCALER_SIDECAR_INSTANCE_ID
|
|
- AUTOSCALER_SIDECAR_PORT
|
|
- AUTOSCALER_SIDECAR_REGION
|
|
- AUTOSCALER_SIDECAR_SHUTDOWN_POLLING_INTERVAL
|
|
- AUTOSCALER_SIDECAR_STATS_POLLING_INTERVAL
|
|
- AUTOSCALER_URL
|
|
- BOSH_URL_PATTERN
|
|
- ENABLE_AUTH
|
|
- ENABLE_GUESTS
|
|
- ENABLE_VISITORS
|
|
- XMPP_AUTH_DOMAIN
|
|
- XMPP_GUEST_DOMAIN
|
|
- XMPP_MUC_DOMAIN
|
|
- XMPP_INTERNAL_MUC_DOMAIN
|
|
- XMPP_SERVER
|
|
- XMPP_PORT
|
|
- XMPP_DOMAIN
|
|
- PUBLIC_URL
|
|
- JIGASI_CONFIGURATION
|
|
- JIGASI_DISABLE_SIP
|
|
- JIGASI_JVB_TIMEOUT
|
|
- JIGASI_LOCAL_REGION
|
|
- JIGASI_LOG_FILE
|
|
- JIGASI_MODE=sip
|
|
- JIGASI_SIP_URI
|
|
- JIGASI_SIP_PASSWORD
|
|
- JIGASI_SIP_SERVER
|
|
- JIGASI_SIP_PORT
|
|
- JIGASI_SIP_TRANSPORT
|
|
- JIGASI_SIP_DEFAULT_ROOM
|
|
- JIGASI_XMPP_USER
|
|
- JIGASI_XMPP_PASSWORD
|
|
- JIGASI_BREWERY_MUC
|
|
- JIGASI_PORT_MIN
|
|
- JIGASI_PORT_MAX
|
|
- JIGASI_HEALTH_CHECK_SIP_URI
|
|
- JIGASI_HEALTH_CHECK_INTERVAL
|
|
- JIGASI_SIP_KEEP_ALIVE_METHOD
|
|
- JIGASI_ENABLE_SDES_SRTP
|
|
- JIGASI_VISITORS_QUEUE_SERVICE_URL
|
|
- JIGASI_VISITORS_QUEUE_SERVICE_PRIVATE_KEY_PATH
|
|
- JIGASI_VISITORS_QUEUE_SERVICE_PRIVATE_KEY_ID
|
|
- SHUTDOWN_REST_ENABLED
|
|
- SENTRY_DSN="${JIGASI_SENTRY_DSN:-0}"
|
|
- SENTRY_ENVIRONMENT
|
|
- SENTRY_RELEASE
|
|
- TZ
|
|
- USE_TRANSLATOR_IN_CONFERENCE
|
|
depends_on:
|
|
- prosody
|
|
networks:
|
|
meet.jitsi:
|