{"id":16366576,"url":"https://github.com/centminmod/docker-centos66-mariadb10","last_synced_at":"2026-02-17T07:30:18.278Z","repository":{"id":27636978,"uuid":"31121576","full_name":"centminmod/docker-centos66-mariadb10","owner":"centminmod","description":"MariaDB 10.x on CentOS 6.6 64bit Docker container build intended for use with CentminMod.com","archived":false,"fork":false,"pushed_at":"2015-11-08T09:00:34.000Z","size":172,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":3,"default_branch":"master","last_synced_at":"2024-12-31T01:40:11.850Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/centminmod.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2015-02-21T10:03:10.000Z","updated_at":"2015-04-29T09:07:33.000Z","dependencies_parsed_at":"2022-09-03T00:58:07.986Z","dependency_job_id":null,"html_url":"https://github.com/centminmod/docker-centos66-mariadb10","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/centminmod%2Fdocker-centos66-mariadb10","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/centminmod%2Fdocker-centos66-mariadb10/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/centminmod%2Fdocker-centos66-mariadb10/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/centminmod%2Fdocker-centos66-mariadb10/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/centminmod","download_url":"https://codeload.github.com/centminmod/docker-centos66-mariadb10/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":239828089,"owners_count":19703799,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-11T02:46:56.889Z","updated_at":"2026-02-17T07:30:18.214Z","avatar_url":"https://github.com/centminmod.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"MariaDB 10.x on CentOS 6.7 64bit Docker container build intended for use with [CentminMod.com LEMP stack](http://centminmod.com). \n\n### My Docker Hub repo\n\n* https://registry.hub.docker.com/u/centminmod/docker-centos66-mariadb10/\n\n### Centmin Mod Docker Development forums\n\n* https://community.centminmod.com/forums/centmin-mod-docker-development.52/\n\n---\n### Default MySQL root user password \n\n* The default MySQL root user password is set to = mysqlpass with added replication user = repl\n\n#### Grab from Docker Hub\n\n    docker pull centminmod/docker-centos66-mariadb10\n\nRun docker container\n\n    docker run -d -p 3306:3306 -t centminmod/docker-centos66-mariadb10\n\nor specify a name e.g. mdb1\n\n    docker run --name mdb1 -d -p 3306:3306 -t centminmod/docker-centos66-mariadb10\n\nor if host system already has MySQL running on port 3306 need to map to another local host port e.g. 3307\n\n    docker run --name mdb1 -d -p 3307:3306 -t centminmod/docker-centos66-mariadb10\n\nto access container via bash if started with name = mdb1\n\n    docker exec -ti mdb1 /bin/bash\n\nto connect from host system to MariaDB docker container use the -h IP address which is shown for the docker0 network interface\n\n    ifconfig docker0 | grep 'inet '\n    inet addr:172.17.42.1  Bcast:0.0.0.0  Mask:255.255.0.0\n\nor connect via IP derived from docker inspect command for container named mdb1\n\n    docker inspect --format '{{ .NetworkSettings.IPAddress }}' mdb1\n    172.17.0.2\n\ne.g. host system running CentminMod.com LEMP stack MariaDB 5.5 server hence the client is 5.5.42 to connect to MariaDB 10.0.16 docker container\n\n    mysqladmin -P 3307 -h 172.17.42.1 -u root -p ver\n    Enter password: \n    mysqladmin  Ver 9.0 Distrib 5.5.42-MariaDB, for Linux on x86_64\n    Copyright (c) 2000, 2015, Oracle, MariaDB Corporation Ab and others.\n    \n    Server version          10.0.16-MariaDB\n    Protocol version        10\n    Connection              172.17.42.1 via TCP/IP\n    TCP port                3307\n    Uptime:                 1 min 2 sec\n    \n    Threads: 1  Questions: 1  Slow queries: 0  Opens: 0  Flush tables: 1  Open tables: 63  Queries per second avg: 0.016\n\n---\n\n#### Building from Dockerfile\n\nGrab files\n\n    git clone https://github.com/centminmod/docker-centos66-mariadb10.git\n\nBuild docker container with image name = centos66-mariadb10. Run command within same directory as Dockerfile\n\n    docker build -t centos66-mariadb10 .\n\nTo run follow same run steps above.\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcentminmod%2Fdocker-centos66-mariadb10","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcentminmod%2Fdocker-centos66-mariadb10","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcentminmod%2Fdocker-centos66-mariadb10/lists"}