Merge pull request #18
* MP-19 Refactoring: Einführung der "Registry" & "Masterdata" Trennung … * MP-19 Refactoring: Frontend Tabula Rasa * MP-19 Refactoring: Frontend Tabula Rasa * refactoring: * MP-20 fix(docker/clients): include `:domains` module in web/desktop b… * MP-20 fix(web-app build): resolve JS compile error and add dev/prod b… * MP-20 fix(web-app): remove vendor.js reference and harden JS bootstra… * MP-20 fixing: clients * MP-20 fixing: clients
This commit is contained in:
@@ -141,6 +141,43 @@ services:
|
||||
networks:
|
||||
- meldestelle-network
|
||||
|
||||
# --- CLIENTS: WEB APP (Kotlin/JS, no WASM) ---
|
||||
web-app:
|
||||
build:
|
||||
context: .
|
||||
dockerfile: dockerfiles/clients/web-app/Dockerfile
|
||||
args:
|
||||
GRADLE_VERSION: 9.1.0
|
||||
JAVA_VERSION: 21
|
||||
NODE_VERSION: 22.21.0
|
||||
NGINX_IMAGE_TAG: 1.28.0-alpine
|
||||
WEB_BUILD_PROFILE: dev
|
||||
container_name: meldestelle-web-app
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- "4000:4000"
|
||||
depends_on:
|
||||
- api-gateway
|
||||
networks:
|
||||
- meldestelle-network
|
||||
|
||||
# --- CLIENTS: DESKTOP APP (VNC + noVNC) ---
|
||||
desktop-app:
|
||||
build:
|
||||
context: .
|
||||
dockerfile: dockerfiles/clients/desktop-app/Dockerfile
|
||||
container_name: meldestelle-desktop-app
|
||||
restart: unless-stopped
|
||||
environment:
|
||||
- API_BASE_URL=http://api-gateway:8081
|
||||
ports:
|
||||
- "5901:5901" # VNC
|
||||
- "6080:6080" # noVNC
|
||||
depends_on:
|
||||
- api-gateway
|
||||
networks:
|
||||
- meldestelle-network
|
||||
|
||||
volumes:
|
||||
postgres-data:
|
||||
pgadmin-data:
|
||||
|
||||
Reference in New Issue
Block a user