14 lines
655 B
YAML
14 lines
655 B
YAML
version: '2.2'
|
|
|
|
services:
|
|
|
|
flexinale-distributed-besucherportal:
|
|
image: de.accso/flexinale-distributed-besucherportal:2024.3.0
|
|
depends_on:
|
|
- flexinale-postgres
|
|
- kafka
|
|
ports:
|
|
- "8080:8080"
|
|
networks:
|
|
- flexinale-network
|
|
command: sh -c "echo 'Waiting 40s ...' & sleep 40 && echo 'Waiting done' && java -Dspring.datasource.url=jdbc:postgresql://flexinale-postgres:5432/distributed-besucherportal -Dbootstrap.servers=kafka:29092 -Dspring.kafka.consumer.bootstrap-servers=kafka:29092 -Dspring.kafka.producer.bootstrap-servers=kafka:29092 -jar flexinale-distributed-besucherportal-2024.2.0-spring-boot-fat-jar.jar"
|