You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by zg...@apache.org on 2019/03/12 12:45:29 UTC

[hbase] 41/133: HBASE-17217 Docker should bind to a different port than 16010

This is an automated email from the ASF dual-hosted git repository.

zghao pushed a commit to branch HBASE-14850
in repository https://gitbox.apache.org/repos/asf/hbase.git

commit 18a78b992dfea7404387301992840c069fbb3525
Author: Enis Soztutar <en...@apache.org>
AuthorDate: Wed Nov 30 12:02:02 2016 -0800

    HBASE-17217 Docker should bind to a different port than 16010
---
 hbase-native-client/bin/start-docker.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/hbase-native-client/bin/start-docker.sh b/hbase-native-client/bin/start-docker.sh
index 5c03eb9..38affa0 100755
--- a/hbase-native-client/bin/start-docker.sh
+++ b/hbase-native-client/bin/start-docker.sh
@@ -52,7 +52,7 @@ fi;
 docker build -t hbase_native .
 
 # After the image is built run the thing
-docker run -p 16010:16010/tcp \
+docker run -p 16050:16050/tcp \
            -v ${BASE_DIR}/..:/usr/src/hbase \
            -v ~/.m2:/root/.m2 \
            -it hbase_native  /bin/bash