-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
89 lines (82 loc) · 1.86 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
version: '2'
services:
# all-comps:
# depends_on:
# - kafka
# build: .
# environment:
# KAFKA_SERVER: kafka:29092
# deploy:
# resources:
# limits:
# cpus: '1.0'
# memory: 2000M
# # reservations:
# # cpus: '0.0001'
# # memory: 20M
telegram-gatherer:
# depends_on:
# - kafka
build: .
restart: always
environment:
KAFKA_SERVER: oracle.yashar.us:29092
TELEGRAM_GATHERER: 1
volumes:
- .:/usr/src/app
deploy:
resources:
limits:
cpus: '1.0'
memory: 2000M
processor:
# depends_on:
# - kafka
build: .
restart: always
environment:
KAFKA_SERVER: 10.147.17.136:29092
PROCESSOR: 1
volumes:
- .:/usr/src/app
deploy:
resources:
limits:
cpus: '1.0'
memory: 2000M
telegram-broadcaster:
# depends_on:
# - kafka
build: .
restart: always
environment:
KAFKA_SERVER: oracle.yashar.us:29092
TELEGRAM_BROADCASTER: 1
volumes:
- .:/usr/src/app
deploy:
resources:
limits:
cpus: '1.0'
memory: 2000M
zookeeper:
image: confluentinc/cp-zookeeper:latest
environment:
ZOOKEEPER_CLIENT_PORT: 2181
ZOOKEEPER_TICK_TIME: 2000
ports:
- 22181:2181
kafka:
image: confluentinc/cp-kafka:latest
depends_on:
- zookeeper
ports:
- 29092:29092
environment:
KAFKA_BROKER_ID: 1
KAFKA_NUM_PARTITIONS: 10
KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181
KAFKA_ADVERTISED_LISTENERS: PLAINTEXT://localhost:29092 #PLAINTEXT_HOST://kafka:29092
KAFKA_LISTENER_SECURITY_PROTOCOL_MAP: PLAINTEXT:PLAINTEXT,PLAINTEXT_HOST:PLAINTEXT
KAFKA_INTER_BROKER_LISTENER_NAME: PLAINTEXT
KAFKA_OFFSETS_TOPIC_REPLICATION_FACTOR: 1