-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-services.yml
85 lines (85 loc) · 2.27 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
version: '2.2'
services:
app:
build:
context: ./
args:
- ENVIRONMENT=DEV
image: testclim
restart: "unless-stopped"
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_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://testclim:testclim@db/testclim"
- "INVENIO_WSGI_PROXIES=2"
- "INVENIO_RATELIMIT_STORAGE_URL=redis://cache:6379/3"
frontend:
build: ./docker/nginx/
image: testclim-frontend
restart: "unless-stopped"
ports:
- "80"
- "443"
cache:
image: redis
restart: "unless-stopped"
read_only: true
ports:
- "6379:6379"
db:
image: postgres:12.4
restart: "unless-stopped"
environment:
- "POSTGRES_USER=testclim"
- "POSTGRES_PASSWORD=testclim"
- "POSTGRES_DB=testclim"
ports:
- "5432:5432"
pgadmin:
image: dpage/pgadmin4:5.2
restart: "unless-stopped"
ports:
- "5050:80"
- "5051:443"
environment:
PGADMIN_DEFAULT_EMAIL: "[email protected]"
PGADMIN_DEFAULT_PASSWORD: "testclim"
mq:
image: rabbitmq:3.8-management
restart: "unless-stopped"
ports:
- "15672:15672"
- "5672:5672"
es:
image: docker.elastic.co/elasticsearch/elasticsearch-oss:7.10.2
restart: "unless-stopped"
environment:
- bootstrap.memory_lock=true
- "ES_JAVA_OPTS=-Xms512m -Xmx512m"
- discovery.type=single-node
healthcheck:
test: ["CMD", "curl", "-f", "localhost:9200/_cluster/health?wait_for_status=green"]
interval: 30s
timeout: 30s
retries: 5
ulimits:
memlock:
soft: -1
hard: -1
mem_limit: 1g
ports:
- "9200:9200"
- "9300:9300"
kibana:
image: docker.elastic.co/kibana/kibana-oss:7.10.2
environment:
- "ELASTICSEARCH_HOSTS=http://es:9200"
- "ES_JAVA_OPTS=-Xms512m -Xmx512m"
ports:
- "5601:5601"