
* add ability to use relative pathes * Add basename prop (#513) * add static controller * add docker-compose * Refactoring * Refactoring * fixed comparison bugs * dirty * clenaup * Update React app Co-authored-by: Alexander Krivonosov <31561808+GneyHabub@users.noreply.github.com> Co-authored-by: German Osin <german.osin@gmail.com> Co-authored-by: Oleg Shuralev <workshur@gmail.com>
19 lines
413 B
YAML
19 lines
413 B
YAML
---
|
|
version: '2'
|
|
services:
|
|
nginx:
|
|
image: nginx:latest
|
|
volumes:
|
|
- ./proxy.conf:/etc/nginx/conf.d/default.conf
|
|
ports:
|
|
- 8080:80
|
|
|
|
kafka-ui:
|
|
container_name: kafka-ui
|
|
image: provectuslabs/kafka-ui:latest
|
|
ports:
|
|
- 8082:8080
|
|
environment:
|
|
KAFKA_CLUSTERS_0_NAME: local
|
|
KAFKA_CLUSTERS_0_BOOTSTRAPSERVERS: kafka:9092
|
|
SERVER_SERVLET_CONTEXT_PATH: /kafka-ui
|