113 строки
3.1 KiB
YAML
113 строки
3.1 KiB
YAML
version: "2.4"
|
|
|
|
x-env-mapping: &env
|
|
environment:
|
|
- CELERY_BROKER_URL=amqp://olympia:olympia@rabbitmq/olympia
|
|
- CELERY_RESULT_BACKEND=redis://redis:6379/1
|
|
- DATABASES_DEFAULT_URL=mysql://root:@mysqld/olympia
|
|
- DJANGO_VERSION=django32
|
|
- ELASTICSEARCH_LOCATION=elasticsearch:9200
|
|
- MEMCACHE_LOCATION=memcached:11211
|
|
- MYSQL_DATABASE=olympia
|
|
- MYSQL_ROOT_PASSWORD=docker
|
|
- OLYMPIA_SITE_URL=http://olympia.test
|
|
- PYTHONDONTWRITEBYTECODE=1
|
|
- PYTHONUNBUFFERED=1
|
|
- TERM=xterm-256color
|
|
- UITEST_FXA_EMAIL
|
|
- UITEST_FXA_PASSWORD=uitester
|
|
- CIRCLECI=${CIRCLECI}
|
|
|
|
services:
|
|
worker: &worker
|
|
<<: *env
|
|
image: addons/addons-server:latest
|
|
command: supervisord -n -c /code/docker/supervisor-celery.conf
|
|
user: olympia
|
|
volumes:
|
|
- .:/code
|
|
extra_hosts:
|
|
- "olympia.test:127.0.0.1"
|
|
|
|
web:
|
|
<<: *worker
|
|
command: supervisord -n -c /code/docker/supervisor.conf
|
|
|
|
nginx:
|
|
image: addons/addons-nginx
|
|
volumes:
|
|
- ./static:/srv/static
|
|
- ./site-static:/srv/site-static
|
|
- ./storage/shared_storage/uploads:/srv/user-media
|
|
- ./storage/files:/srv/user-media/addons
|
|
- ./storage/guarded-addons:/srv/user-media/guarded-addons
|
|
- ./storage/sitemaps:/srv/user-media/sitemaps
|
|
ports:
|
|
- "80:80"
|
|
networks:
|
|
default:
|
|
aliases:
|
|
- olympia.test
|
|
depends_on:
|
|
- web
|
|
- addons-frontend
|
|
|
|
memcached:
|
|
image: memcached:1.4
|
|
|
|
mysqld:
|
|
image: mysql:8.0
|
|
environment:
|
|
- MYSQL_ALLOW_EMPTY_PASSWORD=yes
|
|
- MYSQL_DATABASE=olympia
|
|
|
|
elasticsearch:
|
|
image: docker.elastic.co/elasticsearch/elasticsearch:6.8.8
|
|
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.monitoring.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:2.8
|
|
|
|
rabbitmq:
|
|
image: rabbitmq:3.8
|
|
hostname: olympia
|
|
expose:
|
|
- "5672"
|
|
environment:
|
|
- RABBITMQ_DEFAULT_USER=olympia
|
|
- RABBITMQ_DEFAULT_PASS=olympia
|
|
- RABBITMQ_DEFAULT_VHOST=olympia
|
|
|
|
autograph:
|
|
image: mozilla/autograph:3.3.2
|
|
command: /go/bin/autograph -c /code/scripts/autograph_localdev_config.yaml
|
|
volumes:
|
|
- .:/code
|
|
|
|
addons-frontend:
|
|
<<: *env
|
|
image: mozilla/addons-frontend:latest
|
|
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
|