-
Notifications
You must be signed in to change notification settings - Fork 73
/
docker-compose.deps.yml
44 lines (39 loc) · 1.2 KB
/
docker-compose.deps.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
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at https://mozilla.org/MPL/2.0/.
#
# OpenCRVS is also distributed under the terms of the Civil Registration
# & Healthcare Disclaimer located at http://opencrvs.org/license.
#
# Copyright (C) The OpenCRVS Authors located at https://github.com/opencrvs/opencrvs-core/blob/master/AUTHORS.
volumes:
metricbeat:
services:
mongo1:
image: mongo:4.4
restart: unless-stopped
redis:
image: redis:5
restart: unless-stopped
elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch:8.14.3
restart: unless-stopped
environment:
- discovery.type=single-node
influxdb:
image: influxdb:1.8.10
restart: unless-stopped
hearth:
image: opencrvs/hearth:1.1.0
environment:
- mongodb__url=mongodb://mongo1/hearth-dev
- logger__level=warn
- authentication__type=disabled
- idGenerator=uuidv4
- server__fhirVersion=stu3
depends_on:
- mongo1
restart: unless-stopped
minio:
image: quay.io/minio/minio:RELEASE.2023-09-16T01-01-47Z.fips
restart: unless-stopped