blob: 62c468d2a6814f02786df63cf8b9b9187f0ce99f (
plain) (
tree)
|
|
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' ]
|