-
Notifications
You must be signed in to change notification settings - Fork 11
/
docker-compose.override.yml
98 lines (83 loc) · 2.58 KB
/
docker-compose.override.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
version: '3.4'
services:
aiinferencer:
ports:
- "2060:2060"
environment:
- MINIOURL=http://minio:9000
- Mqtt__ConnectionString=mosquitto
- Mqtt__Port=1883
aiinferencer-dapr:
command: [ "./daprd", "-app-id", "invoke-sender-frames", "--app-protocol", "grpc", "--app-port", "2060","--dapr-http-port", "3600", "--components-path", "./components"]
volumes:
- "./dapr/components/:/components"
rulesengine:
environment:
- ASPNETCORE_ENVIRONMENT=Development
- ASPNETCORE_URLS=http://+:80
- Mqtt__ConnectionString=mosquitto
- Mqtt__Port=1883
ports:
- "80"
framesplitter:
environment:
- TIMEOUT=15
#- RTSP_URI_1=rtsp://20.42.105.26:8554/zmystream
#- RTSP_URI_1=../Datasets/demo.mp4
- RTSP_URI_1=../Datasets/PerimeterDemo.mp4
- MINIOURL=http://minio:9000
- CAMERA_ID_1=VideoDemo
ports:
- "1000"
framesplitter-dapr:
command: [ "./daprd", "-app-id", "Framesplitter","--app-protocol", "grpc","--dapr-http-port", "3500", "-components-path", "/components" ]
volumes:
- "./dapr/components/:/components"
alerts-api:
environment:
- ASPNETCORE_ENVIRONMENT=Development
- ASPNETCORE_URLS=http://+:80
- Mqtt__ConnectionString=mosquitto
- Mqtt__Port=1883
ports:
- "1001:80"
alertsapi-dapr:
command: [ "./daprd", "-app-id", "alerts-api", "-app-port", "80", "-components-path", "/components", "--dapr-http-max-request-size", "50"]
volumes:
- "./dapr/components/:/components"
alerts-ui:
environment:
- ASPNETCORE_ENVIRONMENT=Development
- ASPNETCORE_URLS=http://+:80
ports:
- "1002:80"
volumes:
- ${APPDATA}/Microsoft/UserSecrets:/root/.microsoft/usersecrets:ro
- ${APPDATA}/ASP.NET/Https:/root/.aspnet/https:ro
alerts-ui-dapr:
command: [ "./daprd", "-app-id", "alerts-ui", "-app-port", "80", "--dapr-http-max-request-size","50"]
files-management:
environment:
- ASPNETCORE_ENVIRONMENT=Development
- ASPNETCORE_URLS=http://+:80
- Minio:Username=minio
- Minio:Password=minio123
- Minio:ServiceUrl=http://minio:9000
ports:
- "1003:80"
files-management-dapr:
command: [ "./daprd", "-app-id", "files-management", "-app-port", "80", "-components-path", "/components", "--dapr-http-max-request-size", "50"]
volumes:
- "./dapr/components/:/components"
mosquitto:
ports:
- '1883:1883'
mongodb:
environment:
- PUID=1000
- PGID=1000
volumes:
- './mongodb/database:/data/db'
ports:
- 1004:27027
restart: "unless-stopped"