-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfig.yml
More file actions
212 lines (212 loc) · 3.75 KB
/
fig.yml
File metadata and controls
212 lines (212 loc) · 3.75 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
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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
agave:
image: agaveapi/apache-ssl-proxy
command:
hostname: docker.example.com
ports:
- "443:443"
- "80:80"
links:
- jobs
- apps
- transforms
- files
- monitors
- systems
- metadata
- profiles
- notifications
- apidocs
- logging
- postits
- usage
- tenants
volumes:
- cache/logs/apache:/var/log/httpd
- config/ssl:/etc/httpd/ssl
jobs:
image: agaveapi/jobs-api:2.1.0
command:
hostname: docker.example.com
ports:
- "8080"
links:
- mysql
- mongo
- beanstalkd
- logging
volumes:
- cache/logs/jobs:/usr/local/tomcat/logs
apps:
image: agaveapi/apps-api:2.1.0
command:
hostname: docker.example.com
ports:
- "8080"
links:
- mysql
- beanstalkd
- logging
volumes:
- cache/logs/apps:/usr/local/tomcat/logs
transforms:
image: agaveapi/transforms-api:2.1.0
command:
hostname: docker.example.com
ports:
- "8080"
links:
- mysql
- beanstalkd
- logging
volumes:
- cache/logs/transforms:/usr/local/tomcat/logs
files:
image: agaveapi/files-api:2.1.0
command:
hostname: docker.example.com
ports:
- "8080"
links:
- mysql
- beanstalkd
- logging
volumes:
- cache/logs/files:/usr/local/tomcat/logs
monitors:
image: agaveapi/monitors-api:2.1.0
command:
hostname: docker.example.com
ports:
- "8080"
links:
- mysql
- beanstalkd
- logging
volumes:
- cache/logs/monitors:/usr/local/tomcat/logs
systems:
image: agaveapi/systems-api:2.1.0
command:
hostname: docker.example.com
ports:
- "8080"
links:
- mysql
- beanstalkd
- logging
volumes:
- cache/logs/systems:/usr/local/tomcat/logs
metadata:
image: agaveapi/metadata-api:2.1.0
command:
hostname: docker.example.com
ports:
- "8080"
links:
- mysql
- mongo
- beanstalkd
- logging
volumes:
- cache/logs/metadata:/usr/local/tomcat/logs
profiles:
image: agaveapi/profiles-api:2.1.0
command:
hostname: docker.example.com
ports:
- "8080"
links:
- mysql
- beanstalkd
- logging
volumes:
- cache/logs/profiles:/usr/local/tomcat/logs
notifications:
image: agaveapi/notifications-api:2.1.0
command:
hostname: docker.example.com
ports:
- "8080"
links:
- mysql
- beanstalkd
- logging
volumes:
- cache/logs/notifications:/usr/local/tomcat/logs
apidocs:
image: agaveapi/apidocs-api:2.1.0
command:
hostname: docker.example.com
ports:
- "80"
links:
- logging
volumes:
- cache/logs/apidocs:/var/log/httpd
postits:
image: agaveapi/postits-api:2.1.0
command:
hostname: docker.example.com
ports:
- "80"
links:
- mysql
- beanstalkd
- logging
volumes:
- cache/logs/postits:/var/log/httpd
usage:
image: agaveapi/usage-api:2.1.0
command:
hostname: docker.example.com
ports:
- "80"
links:
- mysql
- beanstalkd
- logging
volumes:
- cache/logs/usage:/var/log/httpd
tenants:
image: agaveapi/tenants-api:2.1.0
command:
hostname: docker.example.com
ports:
- "80"
links:
- mysql
- beanstalkd
- logging
volumes:
- cache/logs/tenants:/var/log/httpd
logging:
image: agaveapi/logging-api:2.1.0
command:
hostname: docker.example.com
ports:
- "80"
links:
- mysql
- beanstalkd
volumes:
- cache/logs/logging:/var/log/httpd
mysql:
image: mysql:5.6
hostname: docker.example.com
ports:
- "3306:3306"
environment:
MYSQL_DATABASE: agave
MYSQL_USER: agaveuser
MYSQL_PASSWORD: password
MYSQL_ROOT_PASSWORD: mysecretpassword
volumes:
- cache/mysql:/var/lib/mysql
mongo:
image: mongo:2.6
volumes:
- cache/mongo:/data/db
beanstalkd:
image: agaveapi/beanstalkd
volumes:
- cache/beanstalkd:/data