Skip to content
Snippets Groups Projects
docker-compose.yml.chat_example 1.06 KiB
Newer Older
  • Learn to ignore specific revisions
  • version: "3.3"
    services:
      redis:
        image: redis
        networks:
         - app-tier
      bbb-streamer:
        image: aauzid/bigbluebutton-livestreaming
    
    Tocho Tochev's avatar
    Tocho Tochev committed
        shm_size: '2gb'
    
        environment:
            # BigBlueButton Server url:
          - BBB_URL=https://your_BigBlueButton_server/bigbluebutton/api
          # BigBlueButton secret:
          - BBB_SECRET=your_secret
          # BigBlueButton meetingID:
          - BBB_MEETING_ID=your_meetingID
          # Media server url:
          - BBB_STREAM_URL=rtmp://media_server_url/stream/stream_key
          # Enable chat functionality
    
          - BBB_ENABLE_CHAT=true
    
          # show chat in live stream
    
          - BBB_SHOW_CHAT=false
    
          # Message to post in BBB Chat when joining a conference
    
          - BBB_CHAT_MESSAGE=Viewers of the live stream can now send messages to this meeting
    
          # Set REDIS host (default: 'redis')
    
          - BBB_REDIS_HOST=redis
    
          # Set REDIS channel to subscribe (default: 'chat')
    
          - BBB_REDIS_CHANNEL=chat
    
          # Username for the chat (default: 'Chat')
    
    L3D's avatar
    L3D committed
          - BBB_CHAT_NAME=Chat
    
        networks:
          - app-tier
    networks:
      app-tier:
    
        driver: bridge