forked from silvio/docker-matrix
-
Notifications
You must be signed in to change notification settings - Fork 1
/
generate.yml
48 lines (42 loc) · 904 Bytes
/
generate.yml
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
version: '2'
services:
vector:
image: allmende/vector
command: generate
volumes:
- /srv/matrix/example:/data
environment:
- SERVER_NAME=matrix.allmende.io
migrate:
image: allmende/synapse:v0.18.7
command: migrate
volumes:
- /srv/matrix/allmende:/data
- ./jobs.sh:/start.sh
environment:
- REPORT_STATS=yes
- SERVER_NAME=matrix.allmende.io
- TERM
networks:
- live
matrix:
image: allmende/synapse:v0.21.1
command: generate
volumes:
- /srv/matrix/example:/data
environment:
- REPORT_STATS=yes
- SERVER_NAME=matrix.allmende.io
depends_on:
- coturn
coturn:
image: allmende/coturn
command: generate
volumes:
- /srv/matrix/example:/data
environment:
- SERVER_NAME=matrix.allmende.io
networks:
live:
external:
name: docker_backend