-
Notifications
You must be signed in to change notification settings - Fork 70
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
68 lines (63 loc) · 1.78 KB
/
docker-compose.yml
File metadata and controls
68 lines (63 loc) · 1.78 KB
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
services:
aas-env:
image: eclipsebasyx/aas-environment:2.0.0-milestone-04
container_name: aas-env
volumes:
- ./config/aas-env.properties:/application/application.properties
ports:
- '8081:8081'
depends_on:
aas-registry:
condition: service_healthy
sm-registry:
condition: service_healthy
aas-registry:
image: eclipsebasyx/aas-registry-log-mem:2.0.0-milestone-04
container_name: aas-registry
ports:
- '8082:8080'
volumes:
- ./config/aas-registry.yml:/workspace/config/application.yml
sm-registry:
image: eclipsebasyx/submodel-registry-log-mem:2.0.0-milestone-04
container_name: sm-registry
ports:
- '8083:8080'
volumes:
- ./config/sm-registry.yml:/workspace/config/application.yml
aas-web-ui:
image: eclipsebasyx/aas-gui:SNAPSHOT
container_name: aas-ui
ports:
- '3000:3000'
environment:
AAS_REGISTRY_PATH: http://localhost:8082/shell-descriptors
SUBMODEL_REGISTRY_PATH: http://localhost:8083/submodel-descriptors
AAS_REPO_PATH: http://localhost:8081/shells
SUBMODEL_REPO_PATH: http://localhost:8081/submodels
CD_REPO_PATH: http://localhost:8081/concept-descriptions
depends_on:
aas-env:
condition: service_healthy
basyx-client:
build:
context: ./basyx-client
dockerfile: Dockerfile
container_name: basyx-client
env_file: ./config/basyx-client.env
volumes:
- ./ingest:/ingest
network_mode: host
depends_on:
aas-env:
condition: service_healthy
legacy-erp:
build:
context: ./legacy-erp
dockerfile: Dockerfile
env_file: ./config/erp.env
volumes:
- ./ingest:/export
depends_on:
basyx-client:
condition: service_started