-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathservice.json
136 lines (136 loc) · 4.73 KB
/
service.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
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
{
"org": "${HZN_ORG_ID}",
"label": "edgex",
"description": "EdgeX Foundry service",
"documentation": "",
"url": "com.github.joewxboy.horizon.edgex",
"version": "1.0.1",
"arch": "amd64",
"public": false,
"sharable": "singleton",
"requiredServices": [],
"userInput": [
{ "name": "EXPORT_DISTRO_CLIENT_HOST", "label": "", "type": "string", "defaultValue": "export-client" },
{ "name": "EXPORT_DISTRO_DATA_HOST", "label": "", "type": "string", "defaultValue": "edgex-core-data" },
{ "name": "EXPORT_DISTRO_CONSUL_HOST", "label": "", "type": "string", "defaultValue": "edgex-config-seed" },
{ "name": "EXPORT_DISTRO_MQTTS_CERT_FILE", "label": "", "type": "string", "defaultValue": "none" },
{ "name": "EXPORT_DISTRO_MQTTS_KEY_FILE", "label": "", "type": "string", "defaultValue": "none" },
{ "name": "LOG_LEVEL", "label": "logging level", "type": "string", "defaultValue": "info" },
{ "name": "LOGTO", "label": "where to log", "type": "string", "defaultValue": "" }
],
"deployment": {
"services": {
"edgex-files": {
"binds": [
"db-data:/data/db",
"log-data:/edgex/logs:rw",
"consul-config:/consul/config",
"consul-data:/consul/data"
],
"image": "edgexfoundry/docker-edgex-volume:1.0.0",
"privileged": true
},
"edgex-mongo": {
"binds": [
"db-data:/data/db",
"log-data:/edgex/logs:rw",
"consul-config:/consul/config",
"consul-data:/consul/data"
],
"specific_ports": [
{ "HostPort": "27017/tcp", "HostIP": "0.0.0.0" }
],
"image": "edgexfoundry/docker-edgex-mongo:1.0.1",
"privileged": true
},
"edgex-support-logging": {
"binds": [
"db-data:/data/db",
"log-data:/edgex/logs:rw",
"consul-config:/consul/config",
"consul-data:/consul/data",
"/root/res/logging-config.toml:/res/docker/configuration.toml:ro"
],
"command": [
"--registry=false"
],
"specific_ports": [
{ "HostPort": "48061/tcp", "HostIP": "0.0.0.0" }
],
"image": "edgexfoundry/docker-support-logging-go:1.0.1",
"privileged": true
},
"edgex-core-metadata": {
"binds": [
"db-data:/data/db",
"log-data:/edgex/logs:rw",
"consul-config:/consul/config",
"consul-data:/consul/data",
"/root/res/metadata-config.toml:/res/docker/configuration.toml:ro"
],
"command": [
"--registry=false"
],
"specific_ports": [
{ "HostPort": "48081/tcp", "HostIP": "0.0.0.0" }
],
"image": "edgexfoundry/docker-core-metadata-go:1.0.1",
"privileged": true
},
"edgex-core-data": {
"binds": [
"db-data:/data/db",
"log-data:/edgex/logs:rw",
"consul-config:/consul/config",
"consul-data:/consul/data",
"/root/res/data-config.toml:/res/docker/configuration.toml:ro"
],
"command": [
"--registry=false"
],
"specific_ports": [
{ "HostPort": "48080/tcp", "HostIP": "0.0.0.0" },
{ "HostPort": "5563/tcp", "HostIP": "0.0.0.0" }
],
"image": "edgexfoundry/docker-core-data-go:1.0.1",
"privileged": true
},
"edgex-core-command": {
"binds": [
"db-data:/data/db",
"log-data:/edgex/logs:rw",
"consul-config:/consul/config",
"consul-data:/consul/data",
"/root/res/command-config.toml:/res/docker/configuration.toml:ro"
],
"command": [
"--registry=false"
],
"specific_ports": [
{ "HostPort": "48082/tcp", "HostIP": "0.0.0.0" }
],
"image": "edgexfoundry/docker-core-command-go:1.0.1",
"privileged": true
},
"edgex-device-random": {
"binds": [
"db-data:/data/db",
"log-data:/edgex/logs:rw",
"consul-config:/consul/config",
"consul-data:/consul/data",
"/root/res/device-random-config.toml:/res/configuration.toml:ro",
"/root/res/device-random.yaml:/res/device-random.yaml:ro"
],
"specific_ports": [
{ "HostPort": "49988/tcp", "HostIP": "0.0.0.0" }
],
"image": "edgexfoundry/docker-device-random-go:1.0.0",
"privileged": true
}
}
},
"sync": true,
"tmpfs": {
"size": 8192000
}
}