Skip to content
Antony Dovgal edited this page May 30, 2016 · 3 revisions

Docker is a virtualization software used to run pre-built software images. Docker image contains a fully-operable OS, which you can modify without affecting your host OS.

Running Pinba in Docker container

In order to fetch latest version of Pinba Docker container, run the following command:

 docker pull tony2001/pinba

When docker finishes pulling the image from the Docker Hub, run it this way:

 docker run -d --net=host --name=pinba tony2001/pinba

The command above starts new container from the image 'tony2001/pinba' in detached mode and maps all the container ports (TCP 3306 for MySQL and UDP 30002 for Pinba data) to the same ports on the host machine.

Clone this wiki locally