forked from druid-io/docker-druid
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfig.yml
More file actions
35 lines (35 loc) · 716 Bytes
/
fig.yml
File metadata and controls
35 lines (35 loc) · 716 Bytes
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
zookeeper:
image: jplock/zookeeper
ports:
- "12181:2181"
- "12888:2888"
- "13888:3888"
hostname: zookeeper
domainname: druid.io
mysql:
image: mysql
volumes:
- ./.data:/var/lib/mysql
environment:
MYSQL_ROOT_PASSWORD: secret
MYSQL_USER: druid
MYSQL_PASSWORD: druid
MYSQL_DATABASE: druid
ports:
- "33306:3306"
hostname: metadb
domainname: druid.io
druid:
#build: . #enable to work off local Dockerfile
image: worrel/docker-druid #enable to work off pre-built Hub Dockerfile
ports:
- "18080:8080"
- "18081:8081"
- "18082:8082"
- "18083:8083"
- "18084:8084"
hostname: services
domainname: druid.io
links:
- zookeeper
- mysql