forked from streamdal/plumber
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
74 lines (68 loc) · 1.84 KB
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
# Used for tests
version: "3"
services:
rabbitmq:
image: rabbitmq:3.7.8-management-alpine
ports:
- "5672:5672"
- "15672:15672"
volumes:
- ./test-assets/backend-data/rabbitmq:/var/lib/rabbitmq
container_name: rabbitmq
kafka:
image: obsidiandynamics/kafka
restart: "no"
ports:
- "2181:2181"
- "9092:9092"
environment:
KAFKA_LISTENERS: "INTERNAL://:29092,EXTERNAL://:9092"
KAFKA_ADVERTISED_LISTENERS: "INTERNAL://kafka:29092,EXTERNAL://localhost:9092"
KAFKA_LISTENER_SECURITY_PROTOCOL_MAP: "INTERNAL:PLAINTEXT,EXTERNAL:PLAINTEXT"
KAFKA_INTER_BROKER_LISTENER_NAME: "INTERNAL"
KAFKA_ZOOKEEPER_SESSION_TIMEOUT: "6000"
KAFKA_RESTART_ATTEMPTS: "10"
KAFKA_RESTART_DELAY: "5"
ZOOKEEPER_AUTOPURGE_PURGE_INTERVAL: "0"
# Kafka UI
kafdrop:
image: obsidiandynamics/kafdrop
restart: "no"
ports:
- "9000:9000"
environment:
KAFKA_BROKERCONNECT: "kafka:29092"
JVM_OPTS: "-Xms16M -Xmx48M -Xss180K -XX:-TieredCompilation -XX:+UseStringDeduplication -noverify"
depends_on:
- "kafka"
mosquitto-ssl:
container_name: mosquitto_container_ssl
image: eclipse-mosquitto:1.6.10
volumes:
- ./test-assets/mosquitto-ssl:/mosquitto/config/
ports:
- '8883:8883'
mosquitto:
container_name: mosquitto_container
image: eclipse-mosquitto:1.6.10
volumes:
- ./test-assets/mosquitto:/mosquitto/config/
ports:
- '1883:1883'
activemq:
container_name: activemq
image: rmohr/activemq:latest
ports:
- "61613:61613"
- "8161:8161" #Admin port, admin/admin to login
nats:
container_name: nats
image: nats:alpine
ports:
- "4222:4222" # Client
- "8222:8222" # Admin panel
redis:
container_name: redis
image: redis:latest
ports:
- "6379:6379"