# Dockerfile **Repository Path**: mirrors_pingcap/Dockerfile ## Basic Information - **Project Name**: Dockerfile - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-19 - **Last Updated**: 2025-12-13 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Dockerfile Build for TiDB server with HBase You can use `docker pull pingcap/dockerfile:latest` or build it manually: docker build -t pingcap/dockerfile:latest . Then, you can start docker with command like: docker run --name tidb-server -d -p 4000:4000 pingcap/dockerfile:latest Finally, use your favourity mysql client to connect TiDB server: mysql -u root -h 127.0.0.1 -P 4000 -D test Enjoy it!