-
Notifications
You must be signed in to change notification settings - Fork 105
/
commerce-kickstart.json
51 lines (51 loc) · 1.21 KB
/
commerce-kickstart.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
{
"id": "commerce-kickstart",
"apps": [
{
"id": "mysql",
"container": {
"type": "DOCKER",
"docker": {
"image": "mysql:5.5",
"network": "BRIDGE"
}
},
"env": {
"SERVICE_NAME": "mysql",
"SERVICE_TAGS": "commerce-kickstart",
"MYSQL_DATABASE": "commerce-kickstart",
"MYSQL_USER": "ckuser",
"MYSQL_PASSWORD": "ckuser",
"MYSQL_ROOT_PASSWORD": "password"
},
"cpus": 1,
"mem": 1024.0,
"instances": 1
},
{
"id": "web",
"container": {
"type": "DOCKER",
"docker": {
"image": "capgemini/apollo-commerce-kickstart:latest",
"network": "BRIDGE",
"portMappings": [{
"containerPort": 80,
"hostPort": 0,
"protocol": "tcp"
}]
}
},
"env": {
"SERVICE_NAME": "commerce-kickstart",
"DRUPAL_DB_PASSWORD": "password",
"DRUPAL_DB_NAME": "commerce-kickstart",
"DRUPAL_DB_HOST": "commerce-kickstart.mysql.service.consul"
},
"cpus": 1,
"mem": 512.0,
"instances": 1,
"dependencies": ["/commerce-kickstart/mysql"]
}
]
}