forked from zenodo/zenodo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-services.yml
66 lines (66 loc) · 1.63 KB
/
docker-services.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
version: '2.1'
services:
app:
build: .
image: zenodo:latest
environment:
- "INVENIO_ACCOUNTS_SESSION_REDIS_URL=redis://cache:6379/1"
- "INVENIO_BROKER_URL=amqp://guest:guest@mq:5672//"
- "INVENIO_CACHE_REDIS_URL=redis://cache:6379/0"
- "INVENIO_CACHE_TYPE=redis"
- "INVENIO_CELERY_RESULT_BACKEND=redis://cache:6379/2"
- "INVENIO_SEARCH_ELASTIC_HOSTS=['es:9200']"
- "INVENIO_SECRET_KEY=CHANGE_ME"
- "INVENIO_SESSION_COOKIE_SECURE=True"
- "INVENIO_SQLALCHEMY_DATABASE_URI=postgresql://zenodo:zenodo@db/zenodo"
- "INVENIO_WSGI_PROXIES=2"
- "FLASK_DEBUG=${FLASK_DEBUG:-on}"
lb:
build: ./docker/haproxy/
image: zenodo-lb:latest
restart: "always"
ports:
- "80:80"
- "443:443"
- "8080:8080"
frontend:
build: ./docker/nginx/
image: zenodo-frontend:latest
restart: "always"
ports:
- "81:80"
- "444:443"
cache:
image: redis
restart: "always"
read_only: true
ports:
- "6379:6379"
db:
build: ./docker/postgres/
image: zenodo-postgres
command: postgres
restart: "always"
environment:
- "POSTGRES_PASSWORD=postgres"
- "POSTGRES_USER=admin"
ports:
- "5432:5432"
mq:
image: rabbitmq:3-management
restart: "always"
ports:
- "15672:15672"
- "5672:5672"
es:
build: ./docker/es/
image: zenodo-es:2.3
restart: "always"
ports:
- "9200:9200"
- "9300:9300"
flower:
image: mher/flower
command: --broker=amqp://guest:guest@mq:5672// --broker_api=http://guest:guest@mq:15672/api/
ports:
- "5555:5555"