mirror of
https://github.com/coollabsio/coolify.git
synced 2026-06-14 03:19:51 +00:00
fix(templates): restore Jitsi Meet service template (#4813)
This commit is contained in:
+650
File diff suppressed because one or more lines are too long
|
After Width: | Height: | Size: 35 KiB |
@@ -1,119 +1,136 @@
|
|||||||
# ignore: true
|
# documentation: https://jitsi.github.io/handbook/docs/devops-guide/devops-guide-docker/
|
||||||
# documentation: https://jitsi.github.io/handbook/docs/intro
|
# slogan: Self-hosted Jitsi Meet — open-source video conferencing platform
|
||||||
# category: productivity
|
# tags: jitsi,video,conference,webrtc,meeting,self-hosted
|
||||||
# slogan: World's easiest way to add meetings to your apps
|
|
||||||
# logo: svgs/jitsi.svg
|
# logo: svgs/jitsi.svg
|
||||||
# tags: video, conferencing, meetings, communication, open-source
|
# port: 80
|
||||||
|
|
||||||
services:
|
services:
|
||||||
jitsi-web:
|
jitsi-web:
|
||||||
image: "jitsi/web:${JITSI_IMAGE_VERSION:-unstable}"
|
image: "jitsi/web:stable-10888"
|
||||||
container_name: jitsi-web
|
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
ports:
|
|
||||||
- "8001:80"
|
|
||||||
- "8443:443"
|
|
||||||
volumes:
|
|
||||||
- ~/.jitsi-meet-cfg/web:/config:Z
|
|
||||||
- ~/.jitsi-meet-cfg/web/crontabs:/var/spool/cron/crontabs:Z
|
|
||||||
- ~/.jitsi-meet-cfg/transcripts:/usr/share/jitsi-meet/transcripts:Z
|
|
||||||
environment:
|
environment:
|
||||||
- SERVICE_URL_JITSI
|
- SERVICE_URL_JITSI
|
||||||
- PUBLIC_URL=$SERVICE_URL_JITSI
|
- PUBLIC_URL=$SERVICE_URL_JITSI
|
||||||
- JITSI_IMAGE_VERSION=unstable
|
- ENABLE_AUTH=0
|
||||||
- JIBRI_RECORDER_PASSWORD=$SERVICE_PASSWORD_JITSI
|
- ENABLE_GUESTS=1
|
||||||
- JIBRI_XMPP_PASSWORD=$SERVICE_PASSWORD_JITSI
|
- ENABLE_LETSENCRYPT=0
|
||||||
- JICOFO_AUTH_PASSWORD=$SERVICE_PASSWORD_JITSI
|
- ENABLE_HTTP_REDIRECT=0
|
||||||
- JIGASI_XMPP_PASSWORD=$SERVICE_PASSWORD_JITSI
|
- DISABLE_HTTPS=1
|
||||||
- JVB_AUTH_PASSWORD=$SERVICE_PASSWORD_JITSI
|
- XMPP_DOMAIN=meet.jitsi
|
||||||
- TZ=UTC
|
- XMPP_AUTH_DOMAIN=auth.meet.jitsi
|
||||||
|
- XMPP_GUEST_DOMAIN=guest.meet.jitsi
|
||||||
|
- XMPP_MUC_DOMAIN=conference.meet.jitsi
|
||||||
|
- XMPP_INTERNAL_MUC_DOMAIN=internal.auth.meet.jitsi
|
||||||
|
- XMPP_BOSH_URL_BASE=http://prosody:5280
|
||||||
|
- JVB_BREWERY_MUC=jvbbrewery
|
||||||
|
- JICOFO_COMPONENT_SECRET=${SERVICE_PASSWORD_JICOFO}
|
||||||
|
- JICOFO_AUTH_PASSWORD=${SERVICE_PASSWORD_JICOFO}
|
||||||
|
- JVB_AUTH_PASSWORD=${SERVICE_PASSWORD_JVB}
|
||||||
|
- TZ=${TZ:-UTC}
|
||||||
|
depends_on:
|
||||||
|
- prosody
|
||||||
|
- jicofo
|
||||||
|
- jvb
|
||||||
|
volumes:
|
||||||
|
- jitsi-web:/config
|
||||||
networks:
|
networks:
|
||||||
meet.jitsi:
|
meet.jitsi:
|
||||||
aliases:
|
aliases:
|
||||||
- meet.jitsi
|
- meet.jitsi
|
||||||
depends_on:
|
|
||||||
- jvb
|
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test: ["CMD", "curl", "-f", "http://localhost"]
|
test: ["CMD", "curl", "-f", "http://localhost"]
|
||||||
interval: 2s
|
interval: 5s
|
||||||
timeout: 10s
|
timeout: 10s
|
||||||
retries: 15
|
retries: 15
|
||||||
|
|
||||||
prosody:
|
prosody:
|
||||||
image: "jitsi/prosody:${JITSI_IMAGE_VERSION:-unstable}"
|
image: "jitsi/prosody:stable-10888"
|
||||||
expose:
|
|
||||||
- '5222'
|
|
||||||
- '5347'
|
|
||||||
- '5280'
|
|
||||||
container_name: jitsi-xmpp
|
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
volumes:
|
|
||||||
- ~/.jitsi-meet-cfg/prosody/config:/config:Z
|
|
||||||
- ~/.jitsi-meet-cfg/prosody/prosody-plugins-custom:/prosody-plugins-custom:Z
|
|
||||||
environment:
|
environment:
|
||||||
- JICOFO_AUTH_PASSWORD
|
- AUTH_TYPE=internal
|
||||||
- JVB_AUTH_PASSWORD
|
- ENABLE_AUTH=0
|
||||||
|
- ENABLE_GUESTS=1
|
||||||
|
- XMPP_DOMAIN=meet.jitsi
|
||||||
|
- XMPP_AUTH_DOMAIN=auth.meet.jitsi
|
||||||
|
- XMPP_GUEST_DOMAIN=guest.meet.jitsi
|
||||||
|
- XMPP_MUC_DOMAIN=conference.meet.jitsi
|
||||||
|
- XMPP_INTERNAL_MUC_DOMAIN=internal.auth.meet.jitsi
|
||||||
|
- JICOFO_COMPONENT_SECRET=${SERVICE_PASSWORD_JICOFO}
|
||||||
|
- JICOFO_AUTH_PASSWORD=${SERVICE_PASSWORD_JICOFO}
|
||||||
|
- JVB_AUTH_PASSWORD=${SERVICE_PASSWORD_JVB}
|
||||||
- PUBLIC_URL=$SERVICE_URL_JITSI
|
- PUBLIC_URL=$SERVICE_URL_JITSI
|
||||||
- TZ
|
- TZ=${TZ:-UTC}
|
||||||
|
- LOG_LEVEL=${LOG_LEVEL:-info}
|
||||||
|
volumes:
|
||||||
|
- jitsi-prosody:/config
|
||||||
networks:
|
networks:
|
||||||
meet.jitsi:
|
meet.jitsi:
|
||||||
aliases:
|
aliases:
|
||||||
- xmpp.meet.jitsi
|
- xmpp.meet.jitsi
|
||||||
|
- auth.meet.jitsi
|
||||||
|
- guest.meet.jitsi
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test: ["CMD", "curl", "-f", "http://localhost:5280/http-bind"]
|
test: ["CMD", "curl", "-f", "http://localhost:5280/http-bind"]
|
||||||
interval: 2s
|
interval: 5s
|
||||||
timeout: 10s
|
timeout: 10s
|
||||||
retries: 15
|
retries: 15
|
||||||
|
|
||||||
jicofo:
|
jicofo:
|
||||||
image: "jitsi/jicofo:${JITSI_IMAGE_VERSION:-unstable}"
|
image: "jitsi/jicofo:stable-10888"
|
||||||
container_name: jitsi-jicofo
|
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
volumes:
|
|
||||||
- ~/.jitsi-meet-cfg/jicofo:/config:Z
|
|
||||||
environment:
|
environment:
|
||||||
|
- AUTH_TYPE=internal
|
||||||
|
- ENABLE_AUTH=0
|
||||||
|
- XMPP_DOMAIN=meet.jitsi
|
||||||
|
- XMPP_AUTH_DOMAIN=auth.meet.jitsi
|
||||||
|
- XMPP_INTERNAL_MUC_DOMAIN=internal.auth.meet.jitsi
|
||||||
|
- XMPP_MUC_DOMAIN=conference.meet.jitsi
|
||||||
- XMPP_SERVER=prosody
|
- XMPP_SERVER=prosody
|
||||||
- JICOFO_AUTH_PASSWORD
|
- JICOFO_COMPONENT_SECRET=${SERVICE_PASSWORD_JICOFO}
|
||||||
- TZ
|
- JICOFO_AUTH_PASSWORD=${SERVICE_PASSWORD_JICOFO}
|
||||||
|
- JVB_BREWERY_MUC=jvbbrewery
|
||||||
- JICOFO_ENABLE_HEALTH_CHECKS=1
|
- JICOFO_ENABLE_HEALTH_CHECKS=1
|
||||||
|
- TZ=${TZ:-UTC}
|
||||||
depends_on:
|
depends_on:
|
||||||
- prosody
|
- prosody
|
||||||
|
volumes:
|
||||||
|
- jitsi-jicofo:/config
|
||||||
networks:
|
networks:
|
||||||
meet.jitsi:
|
meet.jitsi:
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test: ["CMD", "curl", "-f", "http://localhost:8888/about/health"]
|
test: ["CMD", "curl", "-f", "http://localhost:8888/about/health"]
|
||||||
interval: 2s
|
interval: 5s
|
||||||
timeout: 10s
|
timeout: 10s
|
||||||
retries: 15
|
retries: 15
|
||||||
|
|
||||||
jvb:
|
jvb:
|
||||||
image: "jitsi/jvb:${JITSI_IMAGE_VERSION:-unstable}"
|
image: "jitsi/jvb:stable-10888"
|
||||||
container_name: jitsi-jvb
|
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
expose:
|
ports:
|
||||||
- '10000:10000/udp'
|
- "10000:10000/udp"
|
||||||
- '8080:8080'
|
|
||||||
- '10000'
|
|
||||||
volumes:
|
|
||||||
- ~/.jitsi-meet-cfg/jvb:/config:Z
|
|
||||||
environment:
|
environment:
|
||||||
- JVB_ADVERTISE_IPS
|
|
||||||
- JVB_AUTH_PASSWORD
|
|
||||||
- PUBLIC_URL=$SERVICE_URL_JITSI
|
|
||||||
- TZ
|
|
||||||
- XMPP_SERVER=prosody
|
- XMPP_SERVER=prosody
|
||||||
|
- XMPP_DOMAIN=meet.jitsi
|
||||||
|
- XMPP_AUTH_DOMAIN=auth.meet.jitsi
|
||||||
|
- XMPP_INTERNAL_MUC_DOMAIN=internal.auth.meet.jitsi
|
||||||
|
- XMPP_MUC_DOMAIN=conference.meet.jitsi
|
||||||
|
- JVB_AUTH_USER=jvb
|
||||||
|
- JVB_AUTH_PASSWORD=${SERVICE_PASSWORD_JVB}
|
||||||
|
- JVB_BREWERY_MUC=jvbbrewery
|
||||||
|
- JVB_PORT=10000
|
||||||
|
- JVB_ADVERTISE_IPS=${JVB_ADVERTISE_IPS:-} #Optional: set your public IP only if STUN auto-detection fails or the server is behind NAT / multiple interfaces
|
||||||
|
- JVB_STUN_SERVERS=${JVB_STUN_SERVERS:-stun.l.google.com:19302}
|
||||||
|
- PUBLIC_URL=$SERVICE_URL_JITSI
|
||||||
|
- TZ=${TZ:-UTC}
|
||||||
depends_on:
|
depends_on:
|
||||||
- prosody
|
- prosody
|
||||||
|
volumes:
|
||||||
|
- jitsi-jvb:/config
|
||||||
networks:
|
networks:
|
||||||
meet.jitsi:
|
meet.jitsi:
|
||||||
labels:
|
|
||||||
- "traefik.enable=true"
|
|
||||||
- "traefik.udp.routers.my-udp-router.entrypoints=video"
|
|
||||||
- "traefik.udp.routers.my-udp-router.service=my-udp-service"
|
|
||||||
- "traefik.udp.services.my-udp-service.loadbalancer.server.port=10000"
|
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test: ["CMD", "curl", "-f", "http://localhost:8080/about/health"]
|
test: ["CMD", "curl", "-f", "http://localhost:8080/about/health"]
|
||||||
interval: 2s
|
interval: 5s
|
||||||
timeout: 10s
|
timeout: 10s
|
||||||
retries: 15
|
retries: 15
|
||||||
|
|
||||||
@@ -122,6 +139,7 @@ networks:
|
|||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
jitsi-web:
|
jitsi-web:
|
||||||
jitsi-xmpp:
|
jitsi-prosody:
|
||||||
jitsi-jicofo:
|
jitsi-jicofo:
|
||||||
jitsi-jvb:
|
jitsi-jvb:
|
||||||
|
|
||||||
Reference in New Issue
Block a user