You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
docker-jitsi-meet/docker-compose.yml

85 lines
1.9 KiB

7 years ago
version: '3'
services:
# Frontend
web:
image: jitsi/web
ports:
- '${HTTP_PORT}:80'
- '${HTTPS_PORT}:443'
7 years ago
volumes:
- ${CONFIG}/meet:/config
environment:
- JICOFO_AUTH_USER
7 years ago
- XMPP_DOMAIN
- XMPP_AUTH_DOMAIN
- XMPP_BOSH_URL_BASE
- XMPP_MUC_DOMAIN
7 years ago
- TZ
networks:
meet.jitsi:
7 years ago
# XMPP server
prosody:
image: jitsi/prosody
expose:
- '5222'
- '5347'
- '5280'
volumes:
- ${CONFIG}/prosody:/config
environment:
- XMPP_DOMAIN
- XMPP_AUTH_DOMAIN
- XMPP_MUC_DOMAIN
7 years ago
- JICOFO_COMPONENT_SECRET
- JVB_COMPONENT_SECRET
- JICOFO_AUTH_USER
- JICOFO_AUTH_PASSWORD
- TZ
networks:
meet.jitsi:
aliases:
- xmpp.meet.jitsi
7 years ago
# Focus component
jicofo:
image: jitsi/jicofo
volumes:
- ${CONFIG}/jicofo:/config
environment:
- XMPP_DOMAIN
- XMPP_AUTH_DOMAIN
- XMPP_SERVER=xmpp.meet.jitsi
7 years ago
- JICOFO_COMPONENT_SECRET
- JICOFO_AUTH_USER
- JICOFO_AUTH_PASSWORD
- TZ
networks:
meet.jitsi:
# Video bridge
jvb:
image: jitsi/jvb
ports:
- '${JVB_PORT}:${JVB_PORT}/udp'
7 years ago
volumes:
- ${CONFIG}/jvb:/config
environment:
- DOCKER_HOST_ADDRESS
7 years ago
- XMPP_DOMAIN
- XMPP_AUTH_DOMAIN
- XMPP_SERVER=xmpp.meet.jitsi
7 years ago
- JVB_COMPONENT_SECRET
- JVB_PORT
7 years ago
- JVB_STUN_SERVERS
- JICOFO_AUTH_USER
- TZ
networks:
meet.jitsi:
7 years ago
# Custom network so all services can communicate using a FQDN
networks:
meet.jitsi: