wplib / mariadb-docker

MariaDB Docker Container for wplib

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

MariaDB 10.3.x MariaDB 10.2.x MariaDB 10.1.x MariaDB 10.0.x MariaDB 5.5.x

WPLib-Box

MariaDB Docker Container for WPLib Box

This is the repository for the mariadb-docker Docker container implemented for WPLib-Box. It currently provides versions 5.5.x 10.0.x 10.1.x 10.2.x 10.3.x

Supported tags and respective Dockerfiles

10.3.6, 10.3 (10.3.6/Dockerfile)

10.2.14, 10.2, latest (10.2.14/Dockerfile)

10.1.32, 10.1 (10.1.32/Dockerfile)

10.0.34, 10.0 (10.0.34/Dockerfile)

5.5.60, 5.5 (5.5.60/Dockerfile)

Using this container.

If you want to use this container as part of WPLib, then use the Docker Hub method. Or you can use the GitHub method to build and run the container.

Using it from Docker Hub

Links

(Docker Hub repo)[https://hub.docker.com/r/wplib/mariadb/]

(Docker Cloud repo)[https://cloud.docker.com/swarm/wplib/repository/docker/wplib/mariadb/]

Setup from Docker Hub

A simple docker pull wplib/mariadb will pull down the latest version.

Runtime from Docker Hub

start - Spin up a Docker container with the correct runtime configs.

docker run -d --name wplib_mariadb_10.3.6 --restart unless-stopped --network wplibbox -p 3306:3306 -v /projects/wplib.box/sql:/docker-entrypoint-initdb.d -v mariadb_data:/var/lib/mariadb wplib/mariadb:10.3.6

stop - Stop a Docker container.

docker stop wplib_mariadb_10.3.6

run - Run a Docker container in the foreground, (all STDOUT and STDERR will go to console). The Container be removed on termination.

docker run --rm --name wplib_mariadb_10.3.6 --network wplibbox -p 3306:3306 -v /projects/wplib.box/sql:/docker-entrypoint-initdb.d -v mariadb_data:/var/lib/mariadb wplib/mariadb:10.3.6

shell - Run a shell, (/bin/bash), within a Docker container.

docker run --rm --name wplib_mariadb_10.3.6 -i -t --network wplibbox -p 3306:3306 -v /projects/wplib.box/sql:/docker-entrypoint-initdb.d -v mariadb_data:/var/lib/mariadb wplib/mariadb:10.3.6 /bin/bash

rm - Remove the Docker container.

docker container rm wplib_mariadb_10.3.6

Using it from GitHub repo

Setup from GitHub repo

Simply clone this repository to your local machine

git clone https://github.com/wplib/mariadb-docker.git

Building from GitHub repo

make build - Build Docker images. Build all versions from the base directory or specific versions from each directory.

make list - List already built Docker images. List all versions from the base directory or specific versions from each directory.

make clean - Remove already built Docker images. Remove all versions from the base directory or specific versions from each directory.

make push - Push already built Docker images to Docker Hub, (only for WPLib admins). Push all versions from the base directory or specific versions from each directory.

Runtime from GitHub repo

When you cd into a version directory you can also perform a few more actions.

make start - Spin up a Docker container with the correct runtime configs.

make stop - Stop a Docker container.

make run - Run a Docker container in the foreground, (all STDOUT and STDERR will go to console). The Container be removed on termination.

make shell - Run a shell, (/bin/bash), within a Docker container.

make rm - Remove the Docker container.

make test - Will issue a stop, rm, clean, build, create and start on a Docker container.

About

MariaDB Docker Container for wplib


Languages

Language:Makefile 100.0%