Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 13 additions & 10 deletions example/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ volumes:

services:
nginx:
image: nginx:trixie-perl
image: nginx:1.31.2
container_name: nginx
ports:
- "8080:80"
Expand All @@ -26,7 +26,7 @@ services:
- twinengine-network

twinengine-dataengine:
image: ghcr.io/aas-twinengine/dataengine:1.0.0
image: ghcr.io/aas-twinengine/dataengine:v1.0.0
container_name: twinengine-dataengine
depends_on:
dpp-plugin:
Expand Down Expand Up @@ -95,7 +95,7 @@ services:
- twinengine-network

dpp-plugin:
image: ghcr.io/aas-twinengine/plugindpp:1.0.0
image: ghcr.io/aas-twinengine/plugindpp:v1.0.0
container_name: dpp-plugin
depends_on:
postgres:
Expand Down Expand Up @@ -130,7 +130,7 @@ services:
- twinengine-network

template-repository:
image: eclipsebasyx/aas-environment:2.0.0-SNAPSHOT
image: eclipsebasyx/aas-environment:2.0.0-milestone-11
container_name: template-repository
volumes:
- ./aas:/application/aas
Expand All @@ -147,7 +147,7 @@ services:
- twinengine-network

aas-template-registry:
image: eclipsebasyx/aas-registry-log-mongodb:2.0.0-SNAPSHOT
image: eclipsebasyx/aas-registry-log-mongodb:2.0.0-milestone-11
container_name: aas-template-registry
restart: always
depends_on:
Expand All @@ -158,7 +158,7 @@ services:
- twinengine-network

sm-template-registry:
image: eclipsebasyx/submodel-registry-log-mongodb:2.0.0-SNAPSHOT
image: eclipsebasyx/submodel-registry-log-mongodb:2.0.0-milestone-11
container_name: sm-template-registry
depends_on:
- mongo
Expand All @@ -168,7 +168,7 @@ services:
- twinengine-network

aas-web-ui:
image: eclipsebasyx/aas-gui:SNAPSHOT
image: eclipsebasyx/aas-gui:v2-260526
container_name: aas-ui
volumes:
- ./logo:/usr/src/app/dist/Logo
Expand All @@ -182,6 +182,9 @@ services:
LOGO_PATH: "MM_Logo.svg"
PRIMARY_DARK_COLOR: "#00F2E5"
PRIMARY_LIGHT_COLOR: "#041b2b"
ALLOW_EDITING: "false"
SM_VIEWER_EDITOR: "false"
ALLOW_UPLOADING: "false"
restart: always
depends_on:
template-repository:
Expand All @@ -190,7 +193,7 @@ services:
- twinengine-network

mongo:
image: mongo:6.0
image: mongo:8.0
container_name: mongo
environment:
MONGO_INITDB_ROOT_USERNAME: mongoAdmin
Expand All @@ -199,7 +202,7 @@ services:
- twinengine-network

postgres:
image: postgres:16-alpine
image: postgres:14.23-alpine3.24
container_name: postgres
environment:
POSTGRES_DB: twinengine
Expand All @@ -218,7 +221,7 @@ services:
- twinengine-network

pgadmin:
image: dpage/pgadmin4:snapshot
image: dpage/pgadmin4:9.16
container_name: pgadmin
ports:
- "8081:80"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ networks:

services:
nginx:
image: nginx:latest
image: nginx:1.31.2
container_name: nginx
ports:
- "8080:80"
Expand Down Expand Up @@ -112,7 +112,7 @@ services:
- dataengine-network

template-repository:
image: eclipsebasyx/aas-environment:2.0.0-SNAPSHOT
image: eclipsebasyx/aas-environment:2.0.0-milestone-11
container_name: template-repository
ports:
- "8081:8081"
Expand All @@ -131,7 +131,7 @@ services:
- dataengine-network

aas-template-registry:
image: eclipsebasyx/aas-registry-log-mongodb:2.0.0-SNAPSHOT
image: eclipsebasyx/aas-registry-log-mongodb:2.0.0-milestone-11
container_name: aas-template-registry
ports:
- '8082:8080'
Expand All @@ -144,7 +144,7 @@ services:
- dataengine-network

sm-template-registry:
image: eclipsebasyx/submodel-registry-log-mongodb:2.0.0-SNAPSHOT
image: eclipsebasyx/submodel-registry-log-mongodb:2.0.0-milestone-11
container_name: sm-template-registry
ports:
- '8083:8080'
Expand All @@ -156,7 +156,7 @@ services:
- dataengine-network

aas-web-ui:
image: eclipsebasyx/aas-gui:SNAPSHOT
image: eclipsebasyx/aas-gui:v2-260526
container_name: aas-ui
volumes:
- ./logo:/usr/src/app/dist/Logo
Expand All @@ -170,6 +170,9 @@ services:
LOGO_PATH: "MM_Logo.svg"
PRIMARY_DARK_COLOR: "#00F2E5"
PRIMARY_LIGHT_COLOR: "#041b2b"
ALLOW_EDITING: "false"
SM_VIEWER_EDITOR: "false"
ALLOW_UPLOADING: "false"
restart: always
depends_on:
template-repository:
Expand All @@ -178,7 +181,7 @@ services:
- dataengine-network

mongo:
image: mongo:6.0
image: mongo:8.0
container_name: mongo
environment:
MONGO_INITDB_ROOT_USERNAME: mongoAdmin
Expand Down
Loading