-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
46 lines (42 loc) · 981 Bytes
/
docker-compose.yaml
File metadata and controls
46 lines (42 loc) · 981 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
42
43
44
45
46
version: "3"
services:
workflow-storage:
image: quay.io/minio/minio
container_name: workflow-storage
command: [
"server",
"/data",
"--console-address",
":9001",
]
volumes:
- ./tmp/minio/:/data
environment:
- MINIO_ROOT_USER=rootuser
- MINIO_ROOT_PASSWORD=rootpass123
- TZ=Europe/Berlin
ports:
- 9000:9000
- 9001:9001
networks:
minikube:
ipv4_address: 192.168.49.6
aliases:
- "workflow-storage"
workflow-api:
build: .
image: imlahso/workflow-api:latest
container_name: workflow-api
volumes:
- ./config/workflow-api.cfg:/opt/config/workflow-api.cfg
- ./config/kube/config:/root/.kube/config
- ./config/assets:/opt/config/assets
- ./middlelayer:/opt/middlelayer
networks:
minikube:
ipv4_address: 192.168.49.5
aliases:
- "workflow-api"
networks:
minikube:
external: true