This repository has been archived by the owner on Jun 13, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
/
docker-compose.dev.yml
76 lines (76 loc) · 2.77 KB
/
docker-compose.dev.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
version: '3.7'
services:
########################################################
#### Provide build instructions for all i40-aas images
##########################################
i40-aas-echo-skill:
image: sapi40/i40-aas-echo-skill:${BUILD_TAG}
build:
context: src/node-red
dockerfile: ../docker/echo-skill/Dockerfile
##########################################
i40-aas-onboarding-skill:
image: sapi40/i40-aas-onboarding-skill:${BUILD_TAG}
build:
context: src/ts
dockerfile: ../docker/onboarding-skill/Dockerfile
##########################################
i40-aas-https-endpoint-ingress:
image: sapi40/i40-aas-https-endpoint-ingress:${BUILD_TAG}
build:
context: src/ts
dockerfile: ../docker/https-endpoint-ingress/Dockerfile
##########################################
i40-aas-https-endpoint-egress:
image: sapi40/i40-aas-https-endpoint-egress:${BUILD_TAG}
build:
context: src/ts
dockerfile: ../docker/https-endpoint-egress/Dockerfile
##########################################
i40-aas-grpc-endpoint-ingress:
image: sapi40/i40-aas-grpc-endpoint-ingress:${BUILD_TAG}
build:
context: src/go
dockerfile: ../docker/grpc-endpoint-ingress/Dockerfile
##########################################
i40-aas-grpc-endpoint-egress:
image: sapi40/i40-aas-grpc-endpoint-egress:${BUILD_TAG}
build:
context: src/go
dockerfile: ../docker/grpc-endpoint-egress/Dockerfile
##########################################
i40-aas-endpoint-resolver:
image: sapi40/i40-aas-endpoint-resolver:${BUILD_TAG}
build:
context: src/go
dockerfile: ../docker/endpoint-resolver/Dockerfile
##########################################
i40-aas-data-manager:
image: sapi40/i40-aas-data-manager:${BUILD_TAG}
build:
context: src/ts
dockerfile: ../docker/data-manager/Dockerfile
##########################################
i40-aas-endpoint-registry:
image: sapi40/i40-aas-endpoint-registry:${BUILD_TAG}
build:
context: src/ts
dockerfile: ../docker/endpoint-registry/Dockerfile
##########################################
i40-aas-endpoint-registry-ui:
image: sapi40/i40-aas-endpoint-registry-ui:${BUILD_TAG}
build:
context: src/ts
dockerfile: ../docker/endpoint-registry-ui/Dockerfile
##########################################
i40-aas-adapter-registry:
image: sapi40/i40-aas-adapter-registry:${BUILD_TAG}
build:
context: src/ts
dockerfile: ../docker/adapter-registry/Dockerfile
##########################################
i40-aas-storage-adapter-mongodb:
image: sapi40/i40-aas-storage-adapter-mongodb:${BUILD_TAG}
build:
context: src/ts
dockerfile: ../docker/storage-adapter-mongodb/Dockerfile