-
Notifications
You must be signed in to change notification settings - Fork 12
/
docker-services.yml
94 lines (93 loc) · 2.55 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
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
# -*- coding: utf-8 -*-
#
# Copyright (C) 2018 CERN.
#
# Asclepias Broker is free software; you can redistribute it and/or modify it
# under the terms of the MIT License; see LICENSE file for more details.
version: '2.3'
services:
app:
build:
context: ./
args:
- ENVIRONMENT=DEV
image: asclepias-broker
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_RATELIMIT_STORAGE_URL=redis://cache:6379/3"
- "INVENIO_CELERY_BROKER_URL=amqp://guest:guest@mq:5672/"
- "INVENIO_CELERY_RESULT_BACKEND=redis://cache:6379/2"
- "INVENIO_SEARCH_ELASTIC_HOSTS=['es:9200']"
- "INVENIO_SECRET_KEY=CHANGE_ME"
- "INVENIO_SQLALCHEMY_DATABASE_URI=postgresql+psycopg2://asclepias:asclepias@db/asclepias"
- "INVENIO_WSGI_PROXIES=2"
- "INVENIO_INSTANCE_PATH=/opt/invenio/var/instance/"
- "SLACK_API_TOKEN=CHANGE_ME"
lb:
build: ./docker/haproxy/
image: asclepias-broker-lb
restart: "always"
ports:
- "80:80"
- "443:443"
- "8080:8080"
frontend:
build: ./docker/nginx/
image: asclepias-broker-frontend
restart: "always"
ports:
- "80"
- "443"
cache:
image: redis
restart: "always"
read_only: true
ports:
- "6379:6379"
db:
image: postgres:9.6
restart: "always"
environment:
- "POSTGRES_USER=asclepias"
- "POSTGRES_PASSWORD=asclepias"
- "POSTGRES_DB=asclepias"
ports:
- "5432:5432"
mq:
image: rabbitmq:3.9.12-management
volumes:
- "./docker/rabbitmq/rabbitmq.conf:/etc/rabbitmq/rabbitmq.conf"
restart: "always"
ports:
- "15672:15672"
- "5672:5672"
es:
image: docker.elastic.co/elasticsearch/elasticsearch:7.14.1
restart: "always"
environment:
- bootstrap.memory_lock=true
- discovery.zen.minimum_master_nodes=1
- discovery.type=single-node
- ES_JAVA_OPTS=-Xms512m -Xmx512m
ulimits:
memlock:
soft: -1
hard: -1
mem_limit: 1g
ports:
- "9200:9200"
- "9300:9300"
kibana:
image: docker.elastic.co/kibana/kibana:7.14.1
environment:
- ELASTICSEARCH_HOSTS=http://es:9200
- ES_JAVA_OPTS=-Xms512m -Xmx512m
ports: ['5601:5601']
flower:
image: mher/flower
command: celery flower --broker=amqp://guest:guest@mq:5672/ --broker_api=http://guest:guest@mq:15672/api/
ports:
- "5555:5555"