Vorbereitung Release 0.2.0
This commit is contained in:
+164
-19
@@ -1,44 +1,189 @@
|
||||
include:
|
||||
- ./compose-postgres.yaml
|
||||
|
||||
services:
|
||||
mariadb:
|
||||
image: mariadb
|
||||
activemq:
|
||||
image: apache/activemq-artemis:latest-alpine
|
||||
restart: unless-stopped
|
||||
environment:
|
||||
MYSQL_ROOT_PASSWORD: kontor
|
||||
MYSQL_USER: kontor
|
||||
MYSQL_PASSWORD: kontor
|
||||
MYSQL_DATABASE: kontor
|
||||
ports:
|
||||
- 3316:3306
|
||||
- 61616:61616
|
||||
- 8161:8161
|
||||
- 5672:5672
|
||||
networks:
|
||||
- database
|
||||
- integration
|
||||
- frontend
|
||||
volumes:
|
||||
- mariadb-storage:/var/lib/mysql:rw
|
||||
- activemq-data:/var/lib/artemis-instance
|
||||
kontor:
|
||||
image: kontor
|
||||
build:
|
||||
context: ./kontor-spring
|
||||
dockerfile: Dockerfile
|
||||
tags:
|
||||
- kontor:0.2.0-SNAPSHOT
|
||||
image: kontor:0.2.0-SNAPSHOT
|
||||
restart: unless-stopped
|
||||
networks:
|
||||
- database
|
||||
- integration
|
||||
- frontend
|
||||
ports:
|
||||
- 8000:8000
|
||||
- 8100:8100
|
||||
volumes:
|
||||
- images-data:/data/images
|
||||
depends_on:
|
||||
- mariadb
|
||||
postgres:
|
||||
condition: service_healthy
|
||||
kontor-api:
|
||||
image: kontor-api
|
||||
build:
|
||||
context: ./kontor-api
|
||||
dockerfile: Dockerfile
|
||||
tags:
|
||||
- kontor-api:0.2.0-SNAPSHOT
|
||||
image: kontor-api:0.2.0-SNAPSHOT
|
||||
restart: unless-stopped
|
||||
healthcheck:
|
||||
test: ["CMD", "curl", "-f", "http://kontor-api:8500/health"]
|
||||
interval: 10s
|
||||
timeout: 5s
|
||||
retries: 3
|
||||
networks:
|
||||
- database
|
||||
- integration
|
||||
- frontend
|
||||
ports:
|
||||
- 8500:8500
|
||||
volumes:
|
||||
- images-data:/data/images
|
||||
depends_on:
|
||||
postgres:
|
||||
condition: service_healthy
|
||||
kontor-fiber:
|
||||
build:
|
||||
context: ./kontor-fiber
|
||||
dockerfile: Dockerfile
|
||||
tags:
|
||||
- kontor-fiber:0.2.0-SNAPSHOT
|
||||
image: kontor-fiber:0.2.0-SNAPSHOT
|
||||
restart: unless-stopped
|
||||
healthcheck:
|
||||
test: ["CMD", "curl", "-f", "http://kontor-fiber:8600/health"]
|
||||
interval: 10s
|
||||
timeout: 5s
|
||||
retries: 3
|
||||
networks:
|
||||
- database
|
||||
- integration
|
||||
- frontend
|
||||
ports:
|
||||
- 8600:8600
|
||||
depends_on:
|
||||
postgres:
|
||||
condition: service_healthy
|
||||
kontor-echo:
|
||||
build:
|
||||
context: ./kontor-echo
|
||||
dockerfile: Dockerfile
|
||||
tags:
|
||||
- kontor-echo:0.2.0-SNAPSHOT
|
||||
image: kontor-echo:0.2.0-SNAPSHOT
|
||||
restart: unless-stopped
|
||||
healthcheck:
|
||||
test: ["CMD", "curl", "-f", "http://kontor-echo:8700/health"]
|
||||
interval: 10s
|
||||
timeout: 5s
|
||||
retries: 3
|
||||
networks:
|
||||
- database
|
||||
- integration
|
||||
- frontend
|
||||
ports:
|
||||
- 8700:8700
|
||||
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:
|
||||
- mariadb
|
||||
postgres:
|
||||
condition: service_healthy
|
||||
kontor-angular:
|
||||
build:
|
||||
context: ./kontor-angular
|
||||
dockerfile: Dockerfile
|
||||
tags:
|
||||
- kontor-angular:0.2.0-SNAPSHOT
|
||||
image: kontor-angular:0.2.0-SNAPSHOT
|
||||
restart: unless-stopped
|
||||
networks:
|
||||
- database
|
||||
- integration
|
||||
- frontend
|
||||
ports:
|
||||
- 8200:80
|
||||
depends_on:
|
||||
kontor-api:
|
||||
condition: service_healthy
|
||||
kontor-vue:
|
||||
build:
|
||||
context: ./kontor-vue
|
||||
dockerfile: Dockerfile
|
||||
tags:
|
||||
- kontor-vue:0.2.0-SNAPSHOT
|
||||
image: kontor-vue:0.2.0-SNAPSHOT
|
||||
restart: unless-stopped
|
||||
networks:
|
||||
- database
|
||||
- integration
|
||||
- frontend
|
||||
ports:
|
||||
- 8300:80
|
||||
depends_on:
|
||||
postgres:
|
||||
condition: service_healthy
|
||||
kontor-javalin:
|
||||
build:
|
||||
context: ./kontor-javalin
|
||||
dockerfile: Dockerfile
|
||||
tags:
|
||||
- kontor-javalin:0.2.0-SNAPSHOT
|
||||
image: kontor-javalin:0.2.0-SNAPSHOT
|
||||
restart: unless-stopped
|
||||
healthcheck:
|
||||
test: ["CMD", "curl", "-f", "http://kontor-javalin:8400/health"]
|
||||
interval: 10s
|
||||
timeout: 5s
|
||||
retries: 3
|
||||
networks:
|
||||
- database
|
||||
- integration
|
||||
- frontend
|
||||
ports:
|
||||
- 8400:8400
|
||||
depends_on:
|
||||
postgres:
|
||||
condition: service_healthy
|
||||
|
||||
networks:
|
||||
database:
|
||||
integration:
|
||||
name: integration
|
||||
frontend:
|
||||
|
||||
volumes:
|
||||
mariadb-storage:
|
||||
|
||||
activemq-data:
|
||||
images-data:
|
||||
|
||||
Reference in New Issue
Block a user