forked from sandeepbhatkande/react-TDD
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
28 lines (27 loc) · 851 Bytes
/
app.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
{
"id": "${app-name}",
"container": {
"type": "DOCKER",
"docker": {
"image": "${docker_image}",
"privileged": true,
"network": "BRIDGE",
"portMappings": [
{
"containerPort": 5000,
"hostPort": 0,
"protocol": "tcp",
"servicePort": 0
}
]
}
},
"instances": 1,
"cpus": 1,
"public_ip":true,
"mem": 512,
"labels": {
"HAPROXY_0_VHOST": "${dc-os-public-url}",
"HAPROXY_GROUP": "external"
}
}