blob: 2cc7e6246037b2e84fdcba16916b1c7e6be585e8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
version: '2.0'
services:
jitsi-xmpp:
build: ./jitsi-xmpp
ports:
- "5222:5222"
- "5347:5347"
- "5280:5280"
environment:
- JITSI_SECRET_VIDEOBRIDGE=S3CR3T01
- JITSI_SECRET_JICOFO_COMPONENT=S3CR3T02
- JITSI_SECRET_JICOFO_USER=S3CR3T03
jitsi-front:
build: ./jitsi-front
ports:
- "80:80"
environment:
- JITSI_PROSODY_BOSH_PORT=5280
- JITSI_PROSODY_BOSH_HOST=172.17.0.1
|