forked from smizy/docker-apache-drill
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
34 lines (29 loc) · 752 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
34 lines (29 loc) · 752 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
version: "2"
services:
zookeeper-1:
container_name: zookeeper-1
networks: ["vnet"]
hostname: zookeeper-1.vnet
image: smizy/zookeeper:3.4-alpine
environment:
- SERVICE_2181_NAME=zookeeper
- SERVICE_2888_IGNORE=true
- SERVICE_3888_IGNORE=true
command: -server 1 1 vnet
drillbit-1:
container_name: drillbit-1
networks: ["vnet"]
hostname: drillbit-1.vnet
image: smizy/apache-drill:1.10.0-alpine
ports:
- 8047
depends_on: ["zookeeper-1"]
environment:
- SERVICE_8047_NAME=drillbit
- DRILL_HEAP=512M
- DRILL_MAX_DIRECT_MEMORY=1G
- DRILL_ZOOKEEPER_QUORUM=zookeeper-1.vnet:2181
networks:
vnet:
external:
name: vnet