-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
37 lines (36 loc) · 974 Bytes
/
docker-compose.yml
File metadata and controls
37 lines (36 loc) · 974 Bytes
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
version: '2.3'
services:
homeserver:
image: matrixdotorg/synapse
mem_limit: 1024m
cpus: 4.00
volumes:
- synapse-data:/data
ports:
- '127.0.0.1:8080:8008'
restart: unless-stopped
#extra_hosts:
#- 'ident.domain.fqdn:host-ip'
webserver:
image: bubuntux/riot-web
mem_limit: 1024m
cpus: 4.00
volumes:
- riot-data/config.json:/etc/riot-web/config.json:ro
ports:
- '127.0.0.1:8082:80'
restart: unless-stopped
identity:
image: ma1uta/ma1sd
mem_limit: 512m
cpus: 1.00
environment:
MATRIX_DOMAIN: ident.matrix.domain
volumes:
- mxisd-data/etc:/etc/mxisd
- mxisd-data/var:/var/mxisd
ports:
- '127.0.0.1:8081:8090'
restart: unless-stopped
#extra_hosts:
#- 'matrix.domain.fqdn:host-ip'