mirror of
https://github.com/AmirDez/matrix-on-premise.git
synced 2026-03-07 14:23:11 +00:00
45 lines
904 B
YAML
45 lines
904 B
YAML
version: '3'
|
|
services:
|
|
element:
|
|
image: vectorim/element-web:latest
|
|
restart: unless-stopped
|
|
volumes:
|
|
- ./element-config.json:/app/config.json
|
|
networks:
|
|
default:
|
|
ipv4_address: 10.10.10.3
|
|
|
|
synapse:
|
|
image: matrixdotorg/synapse:latest
|
|
restart: unless-stopped
|
|
networks:
|
|
default:
|
|
ipv4_address: 10.10.10.4
|
|
volumes:
|
|
- ./synapse:/data
|
|
|
|
synapse-admin:
|
|
image: awesometechnologies/synapse-admin
|
|
restart: unless-stopped
|
|
networks:
|
|
default:
|
|
ipv4_address: 10.10.10.5
|
|
|
|
coturn:
|
|
image: coturn/coturn:latest
|
|
restart: unless-stopped
|
|
volumes:
|
|
- ./coturn/turnserver.conf:/etc/coturn/turnserver.conf
|
|
ports:
|
|
- 49160-49200:49160-49200/udp
|
|
- 3478:3478
|
|
- 5349:5349
|
|
networks:
|
|
- mybridge
|
|
|
|
networks:
|
|
default:
|
|
external:
|
|
name: matrix_net
|
|
mybridge:
|
|
driver: bridge |