This repository has been archived by the owner on May 3, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 35
/
docker-compose-dev.yml
100 lines (99 loc) · 3.14 KB
/
docker-compose-dev.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
# -*- coding: utf-8 -*-
#
# This file is part of Invenio Demosite.
# Copyright (C) 2015 CERN.
#
# Invenio is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License as
# published by the Free Software Foundation; either version 2 of the
# License, or (at your option) any later version.
#
# Invenio is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Invenio; if not, write to the Free Software Foundation, Inc.,
# 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
web:
build: .
command: inveniomanage runserver -h 0.0.0.0 -p 28080 -d -r
ports:
- "127.0.0.1:28080:28080"
environment:
- ASSETS_DEBUG=True
- BROKER_URL=amqp://guest:guest@rabbit:5672//
- CACHE_REDIS_HOST=cache
- CELERY_RESULT_BACKEND=redis://cache:6379/1
- CFG_DATABASE_HOST=db
- "CFG_REDIS_HOSTS={'default': [{'db': 0, 'host': 'cache', 'port': 6379}]}"
- DEBUG=True
- DEBUG_TB_INTERCEPT_REDIRECTS=False
- ES_HOSTS=['es']
- INVENIO_APP_CONFIG_ENVS=ASSETS_DEBUG,BROKER_URL,CELERY_RESULT_BACKEND,CACHE_REDIS_HOST,CFG_DATABASE_HOST,CFG_REDIS_HOSTS,DEBUG,DEBUG_TB_INTERCEPT_REDIRECTS,ES_HOSTS
volumes:
- ../invenio/invenio:/code/invenio:ro
- ../invenio/docs:/code/docs:rw
- ../invenio/scripts:/code/scripts:ro
- ./invenio_demosite:/code-overlay/invenio_demosite:ro
- /code/invenio/base/translations
read_only: true
links:
- elasticsearch:es
- mysql:db
- rabbitmq:rabbit
- redis:cache
worker:
build: .
command: celery worker --purge -E -A invenio.celery.celery --loglevel=DEBUG
environment:
- ASSETS_DEBUG=True
- BROKER_URL=amqp://guest:guest@rabbit:5672//
- CACHE_REDIS_HOST=cache
- CELERY_RESULT_BACKEND=redis://cache:6379/1
- CFG_DATABASE_HOST=db
- "CFG_REDIS_HOSTS={'default': [{'db': 0, 'host': 'cache', 'port': 6379}]}"
- DEBUG=True
- DEBUG_TB_INTERCEPT_REDIRECTS=False
- ES_HOSTS=['es']
- INVENIO_APP_CONFIG_ENVS=ASSETS_DEBUG,BROKER_URL,CELERY_RESULT_BACKEND,CACHE_REDIS_HOST,CFG_DATABASE_HOST,CFG_REDIS_HOSTS,DEBUG,DEBUG_TB_INTERCEPT_REDIRECTS,ES_HOSTS
volumes_from:
- web
read_only: true
links:
- elasticsearch:es
- mysql:db
- rabbitmq:rabbit
- redis:cache
redis:
image: redis
ports:
- "127.0.0.1:26379:6379"
read_only: true
mysql:
image: mysql
ports:
- "127.0.0.1:23306:3306"
environment:
- MYSQL_DATABASE=invenio
- MYSQL_USER=invenio
- MYSQL_PASSWORD=my123p$ss
- MYSQL_ROOT_PASSWORD=mysecretpassword
# FIXME detect which volumes are required for `read_only`
# volumes:
# - /tmp
# read_only: true
rabbitmq:
image: rabbitmq:3-management
ports:
- "127.0.0.1:25672:5672"
- "127.0.0.1:25673:15672"
read_only: true
elasticsearch:
image: elasticsearch
volumes:
- ./elasticsearch-docker.yml:/usr/share/elasticsearch/config/elasticsearch.yml:ro
ports:
- "127.0.0.1:29200:9200"
read_only: true