forked from allmende/docker-matrix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathallmende.yml
50 lines (45 loc) · 951 Bytes
/
allmende.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
49
50
version: '2'
services:
vector:
build:
context: ./images/vector/
command: start
environment:
VIRTUAL_HOST: vector.allmende.io
VIRTUAL_PORT: 8080
LETSENCRYPT_HOST: vector.allmende.io
LETSENCRYPT_EMAIL: [email protected]
expose:
- "8080"
volumes:
- /srv/matrix/allmende:/data
matrix:
build:
context: ./images/matrix/
command: start
environment:
VIRTUAL_HOST: matrix.allmende.io
VIRTUAL_PORT: 8080
LETSENCRYPT_HOST: matrix.allmende.io
LETSENCRYPT_EMAIL: [email protected]
expose:
- "8080"
volumes:
- /srv/matrix/allmende:/data
coturn:
build:
context: ./images/coturn/
command: start
expose:
- "3478"
- "3479"
- "5349"
- "5350"
ports:
- "3478:3478/udp"
volumes:
- /srv/matrix/allmende:/data
networks:
default:
external:
name: nginx_default