-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcycle.json
More file actions
86 lines (83 loc) · 1.74 KB
/
cycle.json
File metadata and controls
86 lines (83 loc) · 1.74 KB
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
{
"version": "1.0",
"containers": {
"db": {
"name": "db",
"image": {
"name": "db",
"origin": {
"type": "docker-hub",
"details": {
"target": "mysql:5.7"
}
}
},
"stateful": true,
"config": {
"network": {
"public": "disable",
"hostname": "db",
"ports": ["3306:3306"]
},
"deploy": {
"instances": 1
},
"runtime": {
"environment_vars": {
"MYSQL_ROOT_PASSWORD": "password",
"MYSQL_DATABASE": "wordpress",
"MYSQL_USER": "wordpress",
"MYSQL_PASSWORD": "password"
}
}
},
"volumes": [
{
"local": {
"max_size": "20G"
},
"destination": "/var/lib/mysql"
}
]
},
"wordpress": {
"name": "wordpress",
"image": {
"name": "wordpress",
"origin": {
"type": "docker-hub",
"details": {
"target": "wordpress:latest"
}
}
},
"stateful": true,
"config": {
"network": {
"public": "enable",
"hostname": "wordpress",
"ports": ["80:80"]
},
"deploy": {
"instances": 1
},
"runtime": {
"environment_vars": {
"WORDPRESS_DB_USER": "wordpress",
"WORDPRESS_DB_HOST": "db",
"WORDPRESS_DB_PASSWORD": "password",
"WORDPRESS_DB_NAME": "wordpress"
}
}
},
"volumes": [
{
"local": {
"max_size": "20G"
},
"destination": "/var/www/html"
}
]
}
}
}