-
Notifications
You must be signed in to change notification settings - Fork 0
/
mysql.json
58 lines (58 loc) · 1.08 KB
/
mysql.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
{
"id": "/mysql",
"cmd": null,
"cpus": 1,
"mem": 2048,
"disk": 0,
"instances": 1,
"container": {
"type": "DOCKER",
"volumes": [
{
"containerPath": "mysqldata",
"mode": "RW",
"persistent": {
"size": 2000
}
},
{
"containerPath": "/var/lib/mysql",
"hostPath": "mysqldata",
"mode": "RW"
}
],
"docker": {
"image": "mysql",
"network": "BRIDGE",
"portMappings": [
{
"containerPort": 3306,
"hostPort": 3306,
"servicePort": 10000,
"protocol": "tcp",
"labels": {}
}
],
"privileged": false,
"parameters": [],
"forcePullImage": false
}
},
"env": {
"MYSQL_PASSWORD": "Password",
"MYSQL_ROOT_PASSWORD": "Password",
"MYSQL_USER": "user",
"MYSQL_DATABASE": "artdb"
},
"portDefinitions": [
{
"port": 10000,
"protocol": "tcp",
"labels": {}
}
],
"upgradeStrategy": {
"minimumHealthCapacity": 0,
"maximumOverCapacity": 0
}
}