Dockerfile linksRead it on Official web-site of Pinba project.
This image based on [https://hub.docker.com/_/mariadb/](mariadb:10 image from Docker Hub)
pinba-server instanceStarting a Pinba-Server instance is simple:
$ docker run --name some-pinba-server -e MYSQL_ROOT_PASSWORD=my-secret-pw -d scorcher/pinba-server:tag
... where some-pinba-server is the name you want to assign to your container, my-secret-pw is the password to be set for the MySQL root user and tag is the tag specifying the MySQL version you want. See the list above for relevant tags.
or share port on host machine
$ docker run --name some-pinba-server -p 30002:30002/udp -p 3306:3306 -e MYSQL_ROOT_PASSWORD=my-secret-pw -d scorcher/pinba-server:tag
Since MariaDB is intended as a drop-in replacement for MySQL, it can be used with many applications. This image exposes the standard MySQL port (3306) and standart pinba-server port (30002), so container linking makes the MySQL instance available to other application containers. Start your application container like this in order to link it to the MySQL container:
$ docker run --name some-app --link some-pinba-server:mysql -d application-that-uses-mysql
The following command starts another pinba-server container instance and runs the mysql command line client against your original pinba-server container, allowing you to execute SQL statements against your database instance:
$ docker run -it --link some-pinba-server:mysql --rm scorcher/pinba-server sh -c 'exec mysql -h"$MYSQL_PORT_3306_TCP_ADDR" -P"$MYSQL_PORT_3306_TCP_PORT" -uroot -p"$MYSQL_ENV_MYSQL_ROOT_PASSWORD"'
... where some-pinba-server is the name of your original pinba-server container.
More information about the MySQL command line client can be found in the MySQL documentation
The docker exec command allows you to run commands inside a Docker container. The following command line will give you a bash shell inside your mariadb container:
$ docker exec -it some-pinba-server bash
The MariaDB Server log is available through Docker's container log:
$ docker logs some-pinba-server
The MariaDB startup configuration is specified in the file /etc/mysql/my.cnf, and that file in turn includes any files found in the /etc/mysql/conf.d directory that end with .cnf. Settings in files in this directory will augment and/or override settings in /etc/mysql/my.cnf. If you want to use a customized MySQL configuration, you can create your alternative configuration file in a directory on the host machine and then mount that directory location as /etc/mysql/conf.d inside the pinba-server container.
If /my/custom/config-file.cnf is the path and name of your custom configuration file, you can start your pinba-server container like this (note that only the directory path of the custom config file is used in this command):
$ docker run --name some-pinba-server -v /my/custom:/etc/mysql/conf.d -e MYSQL_ROOT_PASSWORD=my-secret-pw -d scorcher/pinba-server:tag
This will start a new container some-pinba-server where the pinba-server instance uses the combined startup settings from /etc/mysql/my.cnf and /etc/mysql/conf.d/config-file.cnf, with settings from the latter taking precedence.
Note that users on host systems with SELinux enabled may see issues with this. The current workaround is to assign the relevant SELinux policy type to your new config file so that the container will be allowed to mount it:
$ chcon -Rt svirt_sandbox_file_t /my/custom
When you start the pinba-server image, you can adjust the configuration of the MariaDB instance by passing one or more environment variables on the docker run command line. Do note that none of the variables below will have any effect if you start the container with a data directory that already contains a database: any pre-existing database will always be left untouched on container startup.
You can find MariaDB variables in original MariaDB documentation
List of pinba-server variables:
Variables description and default values you can see in official documentation
If there is no database initialized when the container starts, then a default database will be created. While this is the expected behavior, this means that it will not accept incoming connections until such initialization completes. This may cause issues when using automation tools, such as docker-compose, which start several containers simultaneously.
If you start your mariadb container instance with a data directory that already contains a database (specifically, a mysql subdirectory), the $MYSQL_ROOT_PASSWORD variable should be omitted from the run command line; it will in any case be ignored, and the pre-existing database will not be changed in any way.
This image is officially supported on Docker version 1.8.2.
Support for older versions (down to 1.6) is provided on a best-effort basis.
Please see the Docker installation documentation for details on how to upgrade your Docker daemon.
Content type
Image
Digest
sha256:bd2363f2e…
Size
115.5 MB
Last updated
over 10 years ago
docker pull scorcher/pinba-server