forked from mozilla-services/socorro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
186 lines (173 loc) · 4.54 KB
/
docker-compose.yml
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
# docker-compose for Socorro development.
#
# Note: Requires docker-comopse 1.10+.
version: "2"
services:
# Socorro base image
base:
build:
context: .
dockerfile: ./docker/Dockerfile
image: local/socorro_base
# Docs building container
docs:
build:
context: .
dockerfile: ./docker/Dockerfile.docs
image: local/socorro_docs
volumes:
- .:/app
# Processor app
processor:
build:
context: .
dockerfile: ./docker/Dockerfile.processor
image: local/socorro_processor
env_file:
- docker/config/local_dev.env
- docker/config/never_on_a_server.env
- docker/config/processor.env
- my.env
depends_on:
- statsd
- localstack-s3
- postgresql
- elasticsearch
- rabbitmq
volumes:
- .:/app
# Webapp app
webapp:
build:
context: .
dockerfile: ./docker/Dockerfile.webapp
image: local/socorro_webapp
env_file:
- docker/config/local_dev.env
- docker/config/never_on_a_server.env
- docker/config/webapp.env
- my.env
depends_on:
- statsd
- localstack-s3
- postgresql
- elasticsearch
- rabbitmq
- memcached
command: ["/app/docker/run_webapp.sh", "--dev"]
ports:
- "8000:8000"
volumes:
- .:/app
# Crontabber app
crontabber:
build:
context: .
dockerfile: ./docker/Dockerfile.crontabber
image: local/socorro_crontabber
env_file:
- docker/config/local_dev.env
- docker/config/never_on_a_server.env
- docker/config/crontabber.env
- my.env
depends_on:
- localstack-s3
- postgresql
- elasticsearch
- rabbitmq
volumes:
- .:/app
# Submitter app
#
# NOTE(willkg): This app runs only in -prod and lets us slurp crashes from
# -prod to -stage. This service is here so we can test changes to the
# submitter, but you should probably never need to run this in your local
# development environment. It does configuration differently than all the
# other services because otherwise we end up with conflicts with things
# we care about.
submitter:
image: local/socorro_processor
env_file:
- docker/config/local_dev_submitter.env
- my.env
depends_on:
- rabbitmq
- localstack-s3
command: ["/app/docker/run_submitter.sh"]
volumes:
- .:/app
# -----------------------------
# External services
# -----------------------------
# https://hub.docker.com/r/mozilla/antenna/
#
# This seems weird, but for the purposes of Socorro, we should treat
# it as an external service.
#
# This uses the development ./bin/run_web.sh script from the Antenna
# container since that creates a bucket before running Antenna.
antenna:
image: mozilla/antenna:latest
environment:
- LOGGING_LEVEL=INFO
- CRASHSTORAGE_CLASS=antenna.ext.s3.crashstorage.S3CrashStorage
- CRASHSTORAGE_ENDPOINT_URL=http://localstack-s3:5000
- CRASHSTORAGE_REGION=us-west-2
- CRASHSTORAGE_ACCESS_KEY=foo
- CRASHSTORAGE_SECRET_ACCESS_KEY=foo
- CRASHSTORAGE_BUCKET_NAME=dev_bucket
depends_on:
- localstack-s3
expose:
- 8000
ports:
- "8888:8000"
command: ./bin/run_web.sh
# https://hub.docker.com/r/hopsoft/graphite-statsd/
statsd:
image: hopsoft/graphite-statsd
ports:
- "8080:80"
- "2003-2004:2003-2004"
- "2023-2024:2023-2024"
- "8125:8125/udp"
- "8126:8126"
# https://hub.docker.com/_/elasticsearch/
# Note: This image is deprecated, but the new one requires fiddling.
elasticsearch:
image: mozilla/socorro_elasticsearch:1.4.5
ports:
- "9200:9200"
- "9300:9300"
# https://hub.docker.com/_/rabbitmq/
rabbitmq:
image: rabbitmq:3.6.9
environment:
- RABBITMQ_DEFAULT_USER=rabbituser
- RABBITMQ_DEFAULT_PASS=rabbitpwd
- RABBITMQ_DEFAULT_VHOST=rabbitvhost
# https://hub.docker.com/_/postgres/
postgresql:
image: postgres:9.4
ports:
- "8574:5432"
environment:
# Create the superuser account
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=aPassword
- POSTGRES_DB=breakpad
# https://hub.docker.com/r/localstack/localstack/
# localstack running a fake S3
localstack-s3:
image: localstack/localstack:0.7.4
environment:
- SERVICES=s3:5000
- DEFAULT_REGION=us-west-2
- HOSTNAME=localstack-s3
ports:
- "5000:5000"
# https://hub.docker.com/_/memcached/
memcached:
image: memcached:1.5.1
ports:
- "11211:11211"