Simple Docker container for HBase with embedded zookeeper. Suitable for development work. Starts as pseudo-distributed.
docker build --rm=true -t mydogboris/hbase:1.2.4 .
docker pull mydogboris/hbase:1.2.4
docker run \
--detach \
--name=my-hbase \
-p 2181:2181 -p 60000:60000 -p 60010:60010 -p 60020:60020 -p 60030:60030 -p 8080:8080 \
-h hbase \
mydogboris/hbase:1.2.4
docker run \
--detach \
--name=my-hbase \
--volume=$HOME/data:/home/data \
-p 2181:2181 -p 60000:60000 -p 60010:60010 -p 60020:60020 -p 60030:60030 -p 8080:8080 \
-h hbase \
mydogboris/hbase:1.2.4
Open [http://localhost:60010] for the Admin GUI.
Zookeeper is at port 2181.
Other ports:
docker exec -it <CONTAINER> bash
In container:
hbase-daemon.sh start rest
Open [http://localhost:8080] to see a list of tables.
Content type
Image
Digest
Size
577.6 MB
Last updated
almost 10 years ago
docker pull mydogboris/hbase