-
Notifications
You must be signed in to change notification settings - Fork 554
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
225 lines (211 loc) Β· 6.69 KB
/
docker-compose.yml
File metadata and controls
225 lines (211 loc) Β· 6.69 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
213
214
215
216
217
218
219
220
221
222
223
224
225
x-env-mapping: &env
# https://docs.docker.com/compose/environment-variables/envvars-precedence/
env_file:
- .env
environment:
- CELERY_BROKER_URL=amqp://olympia:olympia@rabbitmq/olympia
- CELERY_RESULT_BACKEND=redis://redis:6379/1
- DATABASES_DEFAULT_URL=mysql://root:@mysqld/olympia
- ELASTICSEARCH_LOCATION=http://elasticsearch:9200
- MEMCACHE_LOCATION=memcached:11211
- MYSQL_DATABASE=olympia
- MYSQL_ROOT_PASSWORD=docker
- SITE_URL=http://olympia.test
- PYTHONDONTWRITEBYTECODE=1
- PYTHONUNBUFFERED=1
- PYTHONBREAKPOINT=ipdb.set_trace
- TERM=xterm-256color
- HISTFILE=/data/olympia/docker/artifacts/bash_history
- HISTSIZE=50000
- HISTIGNORE=ls:exit:"cd .."
- HISTCONTROL=erasedups
- ENV=local
- SWAGGER_UI_ENABLED=true
- SKIP_DATA_SEED
- FXA_CLIENT_ID
- FXA_CLIENT_SECRET
- STATIC_URL_PREFIX=/static-server/
- MEDIA_URL_PREFIX=/user-media/
x-olympia: &olympia
<<: *env
image: ${DOCKER_TAG:-mozilla/addons-server}
# We don't want docker compose to manage the image for us.
# We sometimes build the image locally and sometimes pull from a registry
# but docker compose should always assume the image is available.
pull_policy: never
# We drop down to a different user through entrypoint.sh, but starting as
# root allows us to fix the ownership of files generated at image build
# time through the ./docker/entrypoint.sh script.
user: root
platform: linux/amd64
entrypoint: ["/data/olympia/docker/entrypoint.sh"]
services:
static:
<<: *olympia
ports:
- "5173:5173"
volumes:
- ./:/data/olympia
- ./deps:/data/olympia/deps
command: make run_vite
worker:
<<: *olympia
command: [
"DJANGO_SETTINGS_MODULE=settings",
"watchmedo",
"auto-restart",
"--directory=/data/olympia/src",
"--pattern=*.py",
"--recursive",
"--no-restart-on-command-exit",
"--",
"celery -A olympia.amo.celery:app worker -E -c 2 --loglevel=INFO",
]
volumes:
- ./:/data/olympia
extra_hosts:
- "olympia.test:127.0.0.1"
restart: on-failure:5
healthcheck:
test: ["CMD-SHELL", "./manage.py monitors --services celery_worker --skip-checks"]
interval: 30s
retries: 3
start_interval: 1s
start_period: 10s
depends_on:
- mysqld
- elasticsearch
- redis
- memcached
- rabbitmq
- autograph
web:
extends:
service: worker
command:
- DJANGO_SETTINGS_MODULE=settings uwsgi --ini /data/olympia/docker/uwsgi.ini
healthcheck:
test: ["CMD-SHELL", "./manage.py monitors --services localdev_web --skip-checks"]
interval: 30s
retries: 3
start_interval: 1s
start_period: 10s
nginx:
image: nginx:1.29.8@sha256:7f0adca1fc6c29c8dc49a2e90037a10ba20dc266baaed0988e9fb4d0d8b85ba0
<<: *env
volumes:
- data_nginx:/etc/nginx/templates
- ./:/srv
ports:
- "80:80"
networks:
default:
aliases:
- olympia.test
depends_on:
- web
memcached:
image: memcached:1.5.16@sha256:9655004969fb55e163c665f1c485f48b48784d3eb54c210882103f54d7d842d1
mysqld:
image: mysql:8.4.8@sha256:da906917ca4ace3ba55538b7c2ee97a9bc865ef14a4b6920b021f0249d603f3d
environment:
- MYSQL_ALLOW_EMPTY_PASSWORD=yes
- MYSQL_DATABASE=olympia
ports:
- "3306:3306"
volumes:
- data_mysqld:/var/lib/mysql
command:
# Optimize for development speed over durability
- --innodb-flush-log-at-trx-commit=0
- --innodb-buffer-pool-size=64M
- --innodb-log-buffer-size=8M
- --innodb-redo-log-capacity=64M
# Skip DNS lookups
- --skip-name-resolve
# Disable performance schema for faster startup
- --performance-schema=OFF
# Allow nonstandard FKs (needed for translations)
- --skip-restrict-fk-on-non-standard-key
healthcheck:
test: ["CMD", "mysqladmin", "ping", "-h", "localhost", "--silent"]
start_interval: 1s
timeout: 2s
start_period: 10s
retries: 3
elasticsearch:
image: elasticsearch:8.19.13@sha256:8b4e9c93353905721e37663f845756d6d7e57632357e865e66f0b70d6c9b3211
environment:
# Disable all xpack related features to avoid unrelated logging
# in docker logs. https://github.com/mozilla/addons-server/issues/8887
# This also avoids us to require authentication for local development
# which simplifies the setup.
- xpack.security.enabled=false
- xpack.graph.enabled=false
- xpack.watcher.enabled=false
- "discovery.type=single-node"
- "ES_JAVA_OPTS=-Xms512m -Xmx512m"
mem_limit: 2g
redis:
image: redis:6.2.21@sha256:66ac7cce6371ef8306b1da7947a6713db23fcbe27da21de16044d478ad28631e
volumes:
- data_redis:/data
rabbitmq:
image: rabbitmq:3.13.7@sha256:87178a0ee3e2f52980ba356d38646ed1056705ff2d5ff281f8965456eaa0c1e3
hostname: olympia
expose:
- "5672"
environment:
- RABBITMQ_DEFAULT_USER=olympia
- RABBITMQ_DEFAULT_PASS=olympia
- RABBITMQ_DEFAULT_VHOST=olympia
volumes:
- data_rabbitmq:/var/lib/rabbitmq
autograph:
image: mozilla/autograph:7.7.4@sha256:26bd613868d69405998d32a13271b1874c9a6c6888f1a2c16c9e7cd409e013ad
command: /go/bin/autograph -c /data/autograph/autograph_localdev_config.yaml
volumes:
- data_autograph:/data/autograph
addons-frontend:
<<: *env
image: mozilla/addons-frontend:2026.04.02@sha256:7c267866d87349c1f70f7604717b1c61c8c8989b6c243273e84428d3c68b5b21
platform: linux/amd64
environment:
# We change the proxy port (which is the main entrypoint) as well as the
# webpack port to avoid a conflict in case someone runs both addons-server
# and addons-frontend locally, with the frontend configured to access
# addons-server locally.
- PROXY_PORT=7010
- WEBPACK_SERVER_PORT=7011
ports:
# We need to expose this port so that statics can be fetched (they are
# exposed using webpack and not by the node app server).
- 7011:7011
command: yarn amo:olympia
networks:
default:
driver: bridge
enable_ipv6: false
volumes:
# Volume for rabbitmq/redis to avoid anonymous volumes
data_rabbitmq:
data_redis:
data_mysqld:
# Keep this value in sync with Makefile-os
# External volumes must be manually created/destroyed
name: addons-server_data_mysqld
external: true
# Volume for nginx configuration
data_nginx:
driver: local
driver_opts:
type: none
o: bind
device: ${PWD}/docker/nginx
# Volume for autograph configuration
data_autograph:
driver: local
driver_opts:
type: none
o: bind
device: ${PWD}/docker/autograph