integrate kontor-quarkus in docker compose

This commit is contained in:
2026-01-18 23:12:14 +01:00
parent a788381eaa
commit 0b3dadc18d
4 changed files with 71 additions and 2 deletions
+22
View File
@@ -101,6 +101,28 @@ services:
depends_on:
postgres:
condition: service_healthy
kontor-quarkus:
build:
context: ./kontor-quarkus
dockerfile: Dockerfile
tags:
- kontor-quarkus:0.2.0-SNAPSHOT
image: kontor-quarkus:0.2.0-SNAPSHOT
restart: unless-stopped
healthcheck:
test: ["CMD", "curl", "-f", "http://kontor-quarkus:8800/q/health"]
interval: 10s
timeout: 5s
retries: 3
networks:
- database
- integration
- frontend
ports:
- 8800:8800
depends_on:
postgres:
condition: service_healthy
kontor-angular:
build:
context: ./kontor-angular