Skip to content

Commit ad2b3c4

Browse files
authored
chore(docker): update image versions (#413)
* chore(docker): update images for security-submodel, aas-environment, aas-discovery, aas-registry, submodel-registry, and proxy services * fix(launch): update command to include mnestix-aas-generator in proxy configurations * fix(docker): rename mnestix-aas-generator service to mnestix-api in docker-compose * fix(launch): replace mnestix-aas-generator with mnestix-api in launch configurations * fix(docker): update mnestix-api image to mnestix-aas-generator for testing purposes * fix(docker): enhance CI workflow to build and cache cypress test images * fix(docker): streamline CI workflow by removing redundant image build and cache steps * fix(ci): reduce parallel test containers from 8 to 4 for improved performance
1 parent d2e0977 commit ad2b3c4

File tree

3 files changed

+11
-10
lines changed

3 files changed

+11
-10
lines changed

docker-compose/compose.dynamic-rbac.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ services:
5252
condition: service_completed_successfully
5353

5454
security-submodel:
55-
image: eclipsebasyx/submodel-repository:2.0.0-milestone-05
55+
image: eclipsebasyx/submodel-repository:2.0.0-milestone-06
5656
container_name: security-submodel
5757
depends_on:
5858
keycloak:

docker-compose/compose.frontend.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ services:
4141
- mnestix-database:/app/prisma/database
4242

4343
mongodb:
44-
image: mongo:5
44+
image: mongo:8
4545
container_name: mongodb
4646
environment:
4747
MONGO_INITDB_ROOT_USERNAME: mongoAdmin
@@ -61,7 +61,7 @@ services:
6161
- mnestix-network
6262

6363
aas-environment:
64-
image: eclipsebasyx/aas-environment:2.0.0-milestone-03.1
64+
image: eclipsebasyx/aas-environment:2.0.0-milestone-06
6565
container_name: aas-environment
6666
depends_on:
6767
- mongodb
@@ -94,7 +94,7 @@ services:
9494
- mnestix-network
9595

9696
aas-discovery:
97-
image: eclipsebasyx/aas-discovery:2.0.0-milestone-03.1
97+
image: eclipsebasyx/aas-discovery:2.0.0-milestone-06
9898
container_name: aas-discovery
9999
depends_on:
100100
- mongodb
@@ -121,7 +121,7 @@ services:
121121
- mnestix-network
122122

123123
aas-registry:
124-
image: eclipsebasyx/aas-registry-log-mongodb:2.0.0-milestone-03.1
124+
image: eclipsebasyx/aas-registry-log-mongodb:2.0.0-milestone-06
125125
container_name: aas-registry
126126
ports:
127127
- '8083:8080'
@@ -140,7 +140,7 @@ services:
140140
- mnestix-network
141141

142142
submodel-registry:
143-
image: eclipsebasyx/submodel-registry-log-mongodb:2.0.0-milestone-03.1
143+
image: eclipsebasyx/submodel-registry-log-mongodb:2.0.0-milestone-06
144144
container_name: submodel-registry
145145
ports:
146146
- '8084:8080'

docker-compose/compose.proxy.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
services:
22
mnestix-proxy:
3-
image: mnestix/mnestix-proxy:dev
3+
image: mnestix/mnestix-proxy:0.1.0
44
container_name: mnestix-proxy
55
ports:
66
- '5065:5065'
@@ -24,8 +24,8 @@ services:
2424

2525
mnestix-browser:
2626
container_name: mnestix-browser
27-
image: mnestix/mnestix-browser:1.5.0 #Works only with the 2.0.0 (new release) version of the backend
28-
#Test with mnestix/mnestix-browser:1.5.0 until 2.0 is fully released and available
27+
image: mnestix/mnestix-browser:1.6.0 #Works only with the 2.0.0 (new release) version of the backend
28+
#Test with mnestix/mnestix-browser:1.6.0 until 2.0 is fully released and available
2929
profiles: ['', 'frontend', 'tests']
3030
environment:
3131
DISCOVERY_API_URL: 'http://mnestix-proxy:5065/discovery'
@@ -36,7 +36,8 @@ services:
3636
MNESTIX_V2_ENABLED: 'true' # Set to 'true' to enable the new API version
3737

3838
mnestix-api:
39-
image: mnestix/mnestix-api:dev
39+
# Replace mnestix-api with mnestix-aas-generator in the launch configurations for testing purposes
40+
image: mnestix/mnestix-aas-generator:0.1.0
4041
container_name: mnestix-api
4142
profiles: ['', 'backend', 'tests']
4243
environment:

0 commit comments

Comments
 (0)