-
Notifications
You must be signed in to change notification settings - Fork 3
/
carsim.json
42 lines (42 loc) · 1.1 KB
/
carsim.json
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
{
"container_id": "carsimservice-example",
"container_name": "carsimservice-example",
"image": {
"name": "ghcr.io/eclipse-leda/leda-example-applications/leda-example-carsim:main"
},
"host_config": {
"devices": [],
"network_mode": "bridge",
"privileged": false,
"restart_policy": {
"maximum_retry_count": 0,
"retry_timeout": 0,
"type": "unless-stopped"
},
"runtime": "io.containerd.runc.v2",
"extra_hosts": [
"databroker:container_databroker-host"
],
"port_mappings": [],
"log_config": {
"driver_config": {
"type": "json-file",
"max_files": 2,
"max_size": "1M",
"root_dir": ""
},
"mode_config": {
"mode": "blocking",
"max_buffer_size": ""
}
}
},
"config": {
"env": [
"DATABROKER_ADDRESS=databroker:55555",
"LOG_LEVEL=INFO",
"SIM_SPEED=2"
],
"cmd": []
}
}