Advertisement
Guest User

Untitled

a guest
Oct 28th, 2020
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.00 KB | None | 0 0
  1. version: '3'
  2.  
  3. services:
  4. # Video bridge
  5. jvb:
  6. image: jitsi/jvb:latest
  7. restart: ${RESTART_POLICY}
  8. ports:
  9. - '${JVB_PORT}:${JVB_PORT}/udp'
  10. - '${JVB_TCP_PORT}:${JVB_TCP_PORT}'
  11. volumes:
  12. - ${CONFIG}/jvb:/config:Z
  13. environment:
  14. - DOCKER_HOST_ADDRESS
  15. - XMPP_AUTH_DOMAIN
  16. - XMPP_INTERNAL_MUC_DOMAIN
  17. - XMPP_SERVER
  18. - JVB_AUTH_USER
  19. - JVB_AUTH_PASSWORD
  20. - JVB_BREWERY_MUC
  21. - JVB_PORT
  22. - JVB_TCP_HARVESTER_DISABLED
  23. - JVB_TCP_PORT
  24. - JVB_TCP_MAPPED_PORT
  25. - JVB_STUN_SERVERS
  26. - JVB_ENABLE_APIS
  27. - PUBLIC_URL
  28. - TZ
  29. - TESTING_OCTO_PROBABILITY
  30. networks:
  31. meet.jitsi:
  32. aliases:
  33. - jvb.meet.jitsi
  34.  
  35. # Custom network so all services can communicate using a FQDN
  36. networks:
  37. meet.jitsi:
  38.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement