Sign inSign up

aoweibrave/hbase

By aoweibrave

Updated over 4 years ago

hbase-2.3. 7 single machine installation

Image
0

10K+

aoweibrave/hbase repository overview

Command

docker run -d \
        -p 2181:2181 \
        -p 8080:8080 \
        -p 8085:8085 \
        -p 9090:9090 \
        -p 9000:9000 \
        -p 9095:9095 \
        -p 16000:16000 \
        -p 16010:16010 \
        -p 16201:16201 \
        -p 16301:16301 \
        -p 16020:16020 \
        --name hbase aoweibrave/hbase

hbase shell

 docker exec -it hbase /bin/bash

 hbase shell

Dockerfile

FROM aoweibrave/jre8
MAINTAINER [email protected]
WORKDIR /hbase-2.3.7
COPY hbase-2.3.7 /hbase-2.3.7

RUN apk update \
        && apk upgrade \
        && apk add --no-cache bash \
        bash-doc \
        bash-completion \
        && rm -rf /var/cache/apk/* \
        && /bin/bash

ENV HBASE_HOME=/hbase-2.3.7
ENV PATH=$HBASE_HOME/bin:$PATH

ENTRYPOINT hbase master start

Tag summary

Content type

Image

Digest

Size

362.4 MB

Last updated

over 4 years ago

docker pull aoweibrave/hbase