forked from ait-aecid/logdata-anomaly-miner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
30 lines (29 loc) · 881 Bytes
/
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
version: "3"
services:
redpanda:
image: docker.vectorized.io/vectorized/redpanda:latest
command: ['start --overprovisioned --smp 1 --memory 1G --reserve-memory 0M --node-id 0 --check=false']
ports:
- "9092:9092"
- "9644:9644"
akafka:
image: aitaecid/akafka:latest
environment:
KAFKA_TOPICS: '["aminer"]'
KAFKA_BOOTSTRAP_SERVERS: redpanda
volumes:
- '$PWD/akafka:/var/lib/akafka'
links:
- redpanda
depends_on:
- redpanda
aminer:
build:
context: .
volumes:
- '$PWD/akafka:/var/lib/akafka'
- '$PWD/aminercfg:/etc/aminer'
- '$PWD/persistency:/var/lib/aminer'
- '$PWD/logs:/logs'
depends_on:
- akafka