Skip to content

Latest commit

 

History

History
21 lines (17 loc) · 602 Bytes

File metadata and controls

21 lines (17 loc) · 602 Bytes

Running MariaDB in a Docker container.

Docker & MariaDB banner

Docker automated builds

The Docker automated builds can be found over here: https://hub.docker.com/r/containerstack/docker-mariadb

Release version;

MARIADB_MAJOR: 10.3 MARIADB_VERSION: 1:10.3.7

Pull Docker image

docker pull containerstack/mariadb

Start a container based on this image

docker run --detach \
--publish [port:port] \
--name [name] \
--volume [path] \
--link mysql:mysql \
--env [env1=something1] \
containerstack/mariadb