forked from Open-MBEE/exec-mms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
41 lines (37 loc) · 870 Bytes
/
docker-compose.yml
File metadata and controls
41 lines (37 loc) · 870 Bytes
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
version: '3.8'
services:
postgres:
image: postgres:11-alpine
environment:
- POSTGRES_PASSWORD=test1234
- POSTGRES_USER=mmsuser
- POSTGRES_DB=mms
ports:
- 5432:5432
elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch:7.8.1
environment:
- "discovery.type=single-node"
ports:
- 9200:9200
- 9300:9300
minio:
image: minio/minio:RELEASE.2022-05-26T05-48-41Z.hotfix.15f13935a
environment:
- "MINIO_ACCESS_KEY=admintest"
- "MINIO_SECRET_KEY=admintest"
command: server /tmp/data
ports:
- 9000:9000
mms:
build: .
container_name: mms
hostname: mms
environment:
- "SPRING_PROFILES_ACTIVE=test"
depends_on:
- postgres
- elasticsearch
- minio
ports:
- 8080:8080