-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
51 lines (42 loc) · 889 Bytes
/
docker-compose.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: "3"
volumes:
nextcloud-app:
ghost-app:
jellyfin-app:
matrix-conduit-app:
services:
nextcloud-app:
image: nextcloud
restart: always
volumes:
- nextcloud-app:/var/www/html
ports:
- 8080:80
ghost-app:
image: ghost:4-alpine
restart: always
ports:
- 3001:2368
volumes:
- ghost-app:/var/lib/ghost/content
environment:
- url=http://localhost:3001
- NODE_ENV=development
jellyfin-app:
image: lscr.io/linuxserver/jellyfin:latest
restart: always
volumes:
- jellyfin-app:/config
ports:
- 8096:8096
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/London
element-app:
image: vectorim/element-web:latest
restart: always
ports:
- 8009:80
volumes:
- $PWD/element-app/element_config.json:/app/config.json