2018-05-11 09:30:45 +00:00
|
|
|
version: "3.6"
|
|
|
|
|
|
|
|
services:
|
|
|
|
pinpoint-hbase:
|
|
|
|
build:
|
|
|
|
context: .
|
2020-09-13 06:58:36 +00:00
|
|
|
dockerfile: Dockerfile_standalone
|
2018-05-11 09:30:45 +00:00
|
|
|
args:
|
|
|
|
- PINPOINT_VERSION=${PINPOINT_VERSION}
|
|
|
|
|
|
|
|
container_name: "${PINPOINT_HBASE_NAME}"
|
|
|
|
image: "pinpointdocker/pinpoint-hbase:${PINPOINT_VERSION}"
|
|
|
|
|
|
|
|
volumes:
|
2018-12-23 08:02:57 +00:00
|
|
|
- /home/pinpoint/hbase
|
|
|
|
- /home/pinpoint/zookeeper
|
2018-05-11 09:30:45 +00:00
|
|
|
expose:
|
|
|
|
# HBase Master API port
|
|
|
|
- "60000"
|
|
|
|
# HBase Master Web UI
|
|
|
|
- "16010"
|
|
|
|
# Regionserver API port
|
2020-09-13 06:58:36 +00:00
|
|
|
- "16201"
|
2018-05-11 09:30:45 +00:00
|
|
|
# HBase Regionserver web UI
|
|
|
|
- "16030"
|
2020-09-13 06:58:36 +00:00
|
|
|
# Regionserver web UI port
|
|
|
|
- "16301"
|
2018-05-11 09:30:45 +00:00
|
|
|
ports:
|
|
|
|
- "${EXTERNAL_HBASE_PORT:-2181}:2181"
|
|
|
|
- "60000:60000"
|
|
|
|
- "16010:16010"
|
|
|
|
- "16030:16030"
|
2020-09-13 06:58:36 +00:00
|
|
|
- "16301:16301"
|
|
|
|
- "16201:16201"
|
2018-12-23 08:02:57 +00:00
|
|
|
restart: always
|
2020-09-13 06:58:36 +00:00
|
|
|
networks:
|
|
|
|
- pinpoint
|
|
|
|
|
|
|
|
networks:
|
|
|
|
pinpoint:
|
|
|
|
external:
|
|
|
|
name: pinpoint-zookeeper_pinpoint
|