-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompose.yaml
More file actions
43 lines (36 loc) · 1.22 KB
/
compose.yaml
File metadata and controls
43 lines (36 loc) · 1.22 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
services:
aas-environment:
image: eclipsebasyx/aas-environment:2.0.0-SNAPSHOT
ports:
- "8081:8080"
environment:
SERVER_PORT: 8080
BASYX_CORS_ALLOWED_ORIGINS: "*"
BASYX_CORS_ALLOWED_METHODS: "GET,POST,PATCH,DELETE,PUT,OPTIONS,HEAD"
BASYX_AASREPOSITORY_FEATURE_REGISTRYINTEGRATION: "http://aas-registry:8080"
BASYX_SUBMODELREPOSITORY_FEATURE_REGISTRYINTEGRATION: "http://submodel-registry:8080"
BASYX_ENVIRONMENT: file:/application/aas
BASYX_EXTERNALURL: "http://localhost:8081"
volumes:
- ./aas:/application/aas
depends_on:
aas-registry:
condition: service_healthy
submodel-registry:
condition: service_healthy
aas-registry:
image: eclipsebasyx/aas-registry-log-mem:2.0.0-SNAPSHOT
ports:
- "8082:8080"
environment:
SERVER_PORT: 8080
BASYX_CORS_ALLOWED_ORIGINS: "*"
BASYX_CORS_ALLOWED_METHODS: "GET,POST,PATCH,DELETE,PUT,OPTIONS,HEAD"
submodel-registry:
image: eclipsebasyx/submodel-registry-log-mem:2.0.0-SNAPSHOT
ports:
- "8083:8080"
environment:
SERVER_PORT: 8080
BASYX_CORS_ALLOWED_ORIGINS: "*"
BASYX_CORS_ALLOWED_METHODS: "GET,POST,PATCH,DELETE,PUT,OPTIONS,HEAD"