-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathbidder.yml
More file actions
66 lines (59 loc) · 1.43 KB
/
bidder.yml
File metadata and controls
66 lines (59 loc) · 1.43 KB
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
#
# Contains the full stack of bidder3 (not including crosstalk, elk, mysql)
# Does contain zookeeper and kafka.
#
version: "3"
services:
zookeeper:
image: "jplock/zookeeper"
ports:
- "2181:2181"
networks:
- rtb_net
kafka:
image: "ches/kafka"
environment:
ZOOKEEPER_IP: "zookeeper"
ports:
- "9092:9092"
networks:
- rtb_net
depends_on:
- zookeeper
zerospike:
image: "64.94.191.15:5000/zerospike"
environment:
BROKERLIST: "kafka:9092"
ports:
- "6000:6000"
- "6001:6001"
- "6002:6002"
- "7001:7001"
#volumes:
# - "./cache.db:/cache.db"
networks:
- rtb_net
depends_on:
- kafka
command: bash -c "./wait-for-it.sh kafka:9092 --timeout=120 && sleep 1; ./zerospike"
bidder:
image: "64.94.191.15:5000/bidder3"
environment:
BROKERLIST: "kafka:9092"
PUBSUB: "zerospike"
EXTERNAL: "http://localhost:8080"
ports:
- "8080:8080"
- "8155:8155"
- "7379:7379"
- "7000:7000"
networks:
- rtb_net
depends_on:
- kafka
- zerospike
command: bash -c "./wait-for-it.sh kafka:9092 --timeout=120 && ./wait-for-it.sh zerospike:6000 --timeout 120 && sleep 1; ./rtb4free"
#command: bash -c "./wait-for-it.sh kafka:9092 --timeout=120 && ./wait-for-it.sh zerospike:6000 --timeout 120 && sleep 1; ./rtb4free-jmx"
networks:
rtb_net:
external: true