-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
48 lines (42 loc) · 1.04 KB
/
Copy pathdocker-compose.yml
File metadata and controls
48 lines (42 loc) · 1.04 KB
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: '3.3'
services:
portainer:
container_name: portainer
image: portainer/portainer-ce:latest
restart: always
ports:
- "9000:9000"
volumes:
- portainer_data:/data
- /var/run/docker.sock:/var/run/docker.sock
synapse:
container_name: synapse
image: matrixdotorg/synapse:latest
restart: always
ports:
- 8008:8008
volumes:
- /var/docker_data/matrix:/data
postgres:
container_name: postgres
image: postgres:14
restart: unless-stopped
ports:
- "5432:5432"
volumes:
- /var/docker_data/postgresdata:/var/lib/postgresql/data
environment:
- POSTGRES_DB=synapse
- POSTGRES_USER=synapse
- POSTGRES_PASSWORD=SUPERSECRETLONGPASSWORD
- POSTGRES_INITDB_ARGS=--lc-collate C --lc-ctype C --encoding UTF8
element:
container_name: element
image: vectorim/element-web:latest
restart: unless-stopped
ports:
- "80:80"
volumes:
- /var/docker_data/element-config.json:/app/config.json
volumes:
portainer_data: