forked from dhomane/DevOps-Python-Tools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhbase-docker-compose.yml
More file actions
42 lines (40 loc) · 858 Bytes
/
Copy pathhbase-docker-compose.yml
File metadata and controls
42 lines (40 loc) · 858 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
36
37
38
39
40
41
42
# vim:ts=2:sts=2:sw=2:et
#
# Author: Hari Sekhon
# Date: 2016-12-09 22:13:19 +0000 (Fri, 09 Dec 2016)
#
# https://github.com/HariSekhon/DevOps-Python-tools
#
# License: see accompanying Hari Sekhon LICENSE file
#
# If you're using my code you're welcome to connect with me on LinkedIn and optionally send me feedback to help steer this or other code I publish
#
# https://www.linkedin.com/in/HariSekhon
#
version: '2.2'
services:
hbase:
extends:
file: common.yml
service: common
image: harisekhon/hbase-dev:${VERSION:-latest}
ports:
- 2181
- 8080
- 8085
- 9090
- 9095
- 16000
- 16010
- 16030 # for HBase 0.99
- 16201
- 16301
# older ports for HBase 0.96
- 60000
- 60010
- 60201
- 60301
networks:
- hbase
networks:
hbase: