forked from cernopendata/opendata.cern.ch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose-dev.yml
67 lines (66 loc) · 2.21 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
# This file is part of CERN Open Data Portal.
# Copyright (C) 2015 CERN.
#
# CERN Open Data Portal 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.
#
# CERN Open Data Portal 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:
- CACHE_REDIS_HOST=cache
- CFG_DATABASE_HOST=db
- DEBUG=True
- DEBUG_TB_INTERCEPT_REDIRECTS=False
- INVENIO_APP_CONFIG_ENVS=CACHE_REDIS_HOST,CFG_DATABASE_HOST,DEBUG,DEBUG_TB_INTERCEPT_REDIRECTS
volumes:
- ../invenio/invenio:/code/invenio:ro
- ../invenio/docs:/code/docs:rw
- ../invenio/scripts:/code/scripts:ro
- ./invenio_opendata:/code-overlay/invenio_opendata:ro
- /code/invenio/base/translations
- ~/Local/opendata.cern.ch-fft-file-cache:/tmp/opendata.cern.ch-fft-file-cache:ro
links:
- mysql:db
- redis:cache
worker:
build: .
command: celery worker --purge -E -A invenio.celery.celery --loglevel=DEBUG
environment:
- BROKER_URL=redis://cache:6379/1
- CACHE_REDIS_HOST=cache
- CELERY_RESULT_BACKEND=redis://cache:6379/1
- CFG_DATABASE_HOST=db
- DEBUG=True
- DEBUG_TB_INTERCEPT_REDIRECTS=False
- INVENIO_APP_CONFIG_ENVS=BROKER_URL,CELERY_RESULT_BACKEND,CACHE_REDIS_HOST,CFG_DATABASE_HOST,DEBUG,DEBUG_TB_INTERCEPT_REDIRECTS
volumes_from:
- web
links:
- mysql:db
- redis:cache
redis:
image: redis
ports:
- "127.0.0.1:26379:6379"
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