aboutsummaryrefslogtreecommitdiff
path: root/docker/jitsi/02_run.yml
blob: 297682c3ed85988b539a9504f654f9f84d0d030e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
version: '3'
services:
  jitsi-xmpp:
    build: ./jitsi-xmpp
    ports:
      - "5222:5222"
      - "5347:5347"
      - "5280:5280"
    env_file: [ 'dev.env' ]
    volumes: [ './jitsi-certs/:/certs:ro' ]
  jitsi-front:
    build: ./jitsi-front
    ports:
      - "443:443"
    env_file: [ 'dev.env' ]
    volumes: [ './jitsi-certs/:/certs:ro' ]
  jitsi-conference-focus:
    build: ./jitsi-conference-focus
    env_file: [ 'dev.env' ]
    volumes: [ './jitsi-certs/:/certs:ro' ]
  jitsi-videobridge:
    build: ./jitsi-videobridge
    ports:
      - "4443:4443"
      - "10000:10000/udp"
    env_file: [ 'dev.env' ]
    volumes: [ './jitsi-certs/:/certs:ro' ]