-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
48 lines (47 loc) · 1.04 KB
/
docker-compose.yaml
File metadata and controls
48 lines (47 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.5'
services:
web:
image: caddy:latest
restart: unless-stopped
env_file: .env
volumes:
- ./caddy:/data
- ./Caddyfile:/etc/caddy/Caddyfile
ports:
- 80:80
- 443:443
depends_on:
- video-gateway
sr-admin-gui:
image: ghcr.io/streamingriver/opensource-iptv:latest
restart: unless-stopped
env_file: .env
depends_on:
- sr-nats-proxy
volumes:
- ./.env:/var/www/html/.env:z
- sqlite-db:/data
nats:
image: nats:latest
restart: unless-stopped
sr-nats-proxy:
image: ghcr.io/streamingriver/go-http-nats-proxy:latest
restart: unless-stopped
depends_on:
- nats
video-transcoder:
image: ghcr.io/streamingriver/video-transcoder:latest
restart: unless-stopped
depends_on:
- nats
- video-gateway
env_file: .env
volumes:
- vt-data:/etc/supervisor/conf.d
video-gateway:
image: ghcr.io/streamingriver/video-gateway:latest
restart: unless-stopped
env_file: .env
volumes:
sqlite-db:
vt-data: