-
Notifications
You must be signed in to change notification settings - Fork 50
/
docker-services.yml
94 lines (93 loc) · 2.54 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-2024 CERN.
#
# invenio-app-ils is free software; you can redistribute it and/or modify it
# under the terms of the MIT License; see LICENSE file for more details.
services:
backend:
build:
context: ./
dockerfile: ./docker/backend/Dockerfile
args:
- ENVIRONMENT=DEV
image: invenio_app_ils-backend
ports:
- "5000"
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=['search:9200']"
- "INVENIO_SECRET_KEY=CHANGE_ME"
- "INVENIO_SQLALCHEMY_DATABASE_URI=postgresql+psycopg2://test:psw@db/ils"
- "INVENIO_RATELIMIT_STORAGE_URL=redis://cache:6379/3"
- "INVENIO_SPA_HOST=https://127.0.0.1"
- "INVENIO_REST_CSRF_ENABLED=False"
frontend:
build:
context: ./
dockerfile: ./docker/frontend/Dockerfile
image: invenio_app_ils-frontend
ports:
- "80"
- "443"
lb:
build: ./docker/lb/
image: invenio_app_ils-lb
ports:
- "80:80"
- "443:443"
- "8080:8080"
cache:
image: redis:6
read_only: true
ports:
- "6379:6379"
db:
image: postgres:14
environment:
- "POSTGRES_USER=test"
- "POSTGRES_PASSWORD=psw"
- "POSTGRES_DB=ils"
ports:
- "5432:5432"
mq:
image: rabbitmq:3-management
ports:
- "15672:15672"
- "5672:5672"
search:
image: opensearchproject/opensearch:2.11.1
environment:
- bootstrap.memory_lock=true
- "OPENSEARCH_JAVA_OPTS=-Xms512m -Xmx512m"
- "DISABLE_INSTALL_DEMO_CONFIG=true"
- "DISABLE_SECURITY_PLUGIN=true"
- "discovery.type=single-node"
ulimits:
memlock:
soft: -1
hard: -1
mem_limit: 1g
ports:
- "9200:9200"
- "9300:9300"
opensearch-dashboards:
image: opensearchproject/opensearch-dashboards:2.11.1
ports:
- "5601:5601"
expose:
- "5601"
environment:
# settings only for development. DO NOT use in production!
- 'OPENSEARCH_HOSTS=["http://search:9200"]'
- "DISABLE_SECURITY_DASHBOARDS_PLUGIN=true"
flower:
image: mher/flower:0.9.7
command: --broker=amqp://guest:guest@mq:5672/ --broker_api=http://guest:guest@mq:15672/api/
ports:
- "5555:5555"