-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
26 lines (26 loc) · 921 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
26 lines (26 loc) · 921 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
services:
faultcam:
build: .
command: ["serve", "/opt/faultcam/scenarios/normal-container.yml", "--duration-ms", "300000"]
ports:
- "127.0.0.1:8554:8554/tcp"
- "127.0.0.1:8554:8554/udp"
mediamtx:
image: bluenviron/mediamtx:1.19.1@sha256:61ebddaa43a6da78d4c6e98b9f9c12066856ffd85893656f5c000d870b88bbe4
depends_on: [faultcam]
ports:
- "127.0.0.1:8555:8554/tcp"
- "127.0.0.1:8555:8554/udp"
volumes:
- ./integrations/mediamtx.yml:/mediamtx.yml:ro
command: ["/mediamtx.yml"]
go2rtc:
image: alexxit/go2rtc:1.9.14@sha256:675c318b23c06fd862a61d262240c9a63436b4050d177ffc68a32710d9e05bae
depends_on: [faultcam]
ports:
- "127.0.0.1:8556:8554/tcp"
- "127.0.0.1:8556:8554/udp"
- "127.0.0.1:1984:1984/tcp"
volumes:
- ./integrations/go2rtc.yaml:/config/go2rtc.yaml:ro
command: ["go2rtc", "-config", "/config/go2rtc.yaml"]