-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.dev.yml
77 lines (71 loc) · 1.48 KB
/
docker-compose.dev.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
version: '3'
services:
cassandra:
image: cassandra:2.1.9
restart: unless-stopped
environment:
- CASSANDRA_LISTEN_ADDRESS=cassandra
expose:
- 7000
- 7001
- 7199
- 9042
- 9160
ports:
- 9160:9160
- 9042:9042
etcd:
image: quay.io/coreos/etcd:latest
restart: unless-stopped
command: -advertise-client-urls=http://0.0.0.0:2379 -listen-client-urls=http://0.0.0.0:2379
expose:
- 4001
- 2380
- 2379
fenix:
image: docker-registry.prod.williamhill.plc/martin.hatas/fenix:1.0.0-SNAPSHOT
restart: unless-stopped
expose:
- 2551
- 7777
environment:
- CASSANDRA=cassandra
- KAFKA=kafka
depends_on:
- etcd
- cassandra
- kafka
fenixDriver:
image: docker-registry.prod.williamhill.plc/martin.hatas/fenix:1.0.0-SNAPSHOT
restart: unless-stopped
expose:
- 2551
ports:
- 7777:7777
environment:
- CASSANDRA=cassandra
- KAFKA=kafka
depends_on:
- etcd
- cassandra
- kafka
kafka:
image: wurstmeister/kafka
restart: unless-stopped
environment:
- KAFKA_ADVERTISED_HOST_NAME=kafka
- KAFKA_ADVERTISED_PORT=9092
- KAFKA_ZOOKEEPER_CONNECT=zookeeper:2181
ports:
- 9092:9092
expose:
- 9092
depends_on:
- zookeeper
zookeeper:
image: wurstmeister/zookeeper
restart: unless-stopped
ports:
- 2181:2181
expose:
- 2181