-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcompose.yaml
More file actions
51 lines (46 loc) · 1.26 KB
/
compose.yaml
File metadata and controls
51 lines (46 loc) · 1.26 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
49
50
51
services:
mock-xconf:
image: "ghcr.io/rdkcentral/docker-device-mgt-service-test/mockxconf:latest"
container_name: "mockxconf"
ports:
- "50050:50050"
- "50051:50051"
- "50052:50052"
- "50053:50053"
- "50054:50054"
- "50055:50055" # RDK-61060: XPKI Certifier
- "50056:50056"
- "50057:50057"
- "50058:50058"
- "50059:50059" # Crash metadata endpoint
- "50060:50060" # S3 presigned URL endpoint
volumes:
- ../:/mnt/L2_CONTAINER_SHARED_VOLUME
environment:
- ENABLE_MTLS=true
l2-container:
image: "ghcr.io/rdkcentral/docker-device-mgt-service-test/native-platform:latest"
container_name: "native-platform"
ports:
- "9090:9090"
depends_on:
- mock-xconf
volumes:
- ../:/mnt/L2_CONTAINER_SHARED_VOLUME
cap_add:
- NET_ADMIN
- SYS_ADMIN
security_opt:
- seccomp=unconfined
- apparmor=unconfined
environment:
- ENABLE_MTLS=true
nmap-container:
image: "ghcr.io/rdkcentral/docker-device-mgt-service-test/native-platform:latest"
container_name: "nmap-platform"
depends_on:
- mock-xconf
volumes:
- ../:/mnt/L2_CONTAINER_SHARED_VOLUME
cap_add:
- NET_ADMIN