{"id":16598557,"url":"https://github.com/snickerjp/docker-mysql-shell","last_synced_at":"2026-06-20T08:31:18.500Z","repository":{"id":38204305,"uuid":"344465814","full_name":"snickerjp/docker-mysql-shell","owner":"snickerjp","description":"docker mysql-shell","archived":false,"fork":false,"pushed_at":"2026-05-15T09:52:04.000Z","size":150,"stargazers_count":0,"open_issues_count":1,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-05-15T11:31:42.289Z","etag":null,"topics":["docker","mysql","mysql-shell"],"latest_commit_sha":null,"homepage":"https://hub.docker.com/r/snickerjp/docker-mysql-shell","language":"Dockerfile","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/snickerjp.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2021-03-04T12:25:01.000Z","updated_at":"2026-05-15T09:52:09.000Z","dependencies_parsed_at":"2023-01-19T15:17:11.319Z","dependency_job_id":"1333efe7-9b78-47e5-857b-f8c8f55bcd22","html_url":"https://github.com/snickerjp/docker-mysql-shell","commit_stats":null,"previous_names":[],"tags_count":30,"template":false,"template_full_name":null,"purl":"pkg:github/snickerjp/docker-mysql-shell","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/snickerjp%2Fdocker-mysql-shell","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/snickerjp%2Fdocker-mysql-shell/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/snickerjp%2Fdocker-mysql-shell/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/snickerjp%2Fdocker-mysql-shell/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/snickerjp","download_url":"https://codeload.github.com/snickerjp/docker-mysql-shell/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/snickerjp%2Fdocker-mysql-shell/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34563535,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-20T02:00:06.407Z","response_time":98,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["docker","mysql","mysql-shell"],"created_at":"2024-10-12T00:08:57.104Z","updated_at":"2026-06-20T08:31:18.495Z","avatar_url":"https://github.com/snickerjp.png","language":"Dockerfile","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Docker MySQL Shell Images\n\n[![Codacy Badge](https://api.codacy.com/project/badge/Grade/314c46648b7a4b85a25edfeef95edad5)](https://app.codacy.com/gh/snickerjp/docker-mysql-shell?utm_source=github.com\u0026utm_medium=referral\u0026utm_content=snickerjp/docker-mysql-shell\u0026utm_campaign=Badge_Grade_Settings)\n\nThis repository contains Dockerfiles for MySQL Shell in two different series:\n- Innovation Series (9.7.x) - Latest features [(Dockerfile)](docker/innovation/Dockerfile)\n- LTS Series (8.4.x) - Long Term Support [(Dockerfile)](docker/lts/Dockerfile)\n\nBoth images are based on Debian 12 (slim) for minimal image size.\n\n## Available Tags\n\n### Innovation Series [(Dockerfile)](docker/innovation/Dockerfile)\n- `snickerjp/docker-mysql-shell:9.7` - Innovation series with specific version\n- `snickerjp/docker-mysql-shell:Innovation` - Latest Innovation series build\n\n### LTS Series [(Dockerfile)](docker/lts/Dockerfile)\n- `snickerjp/docker-mysql-shell:8.4` - LTS series with specific version\n- `snickerjp/docker-mysql-shell:LTS` - Latest LTS series build\n- `snickerjp/docker-mysql-shell:latest` - Same as LTS series\n\n## Building the Images\n\n### Innovation Series (9.7.x) [(Dockerfile)](docker/innovation/Dockerfile)\n```bash\ncd docker/innovation\ndocker build -t snickerjp/docker-mysql-shell:9 .\n```\n\n### LTS Series (8.4.x) [(Dockerfile)](docker/lts/Dockerfile)\n```bash\ncd docker/lts\ndocker build -t snickerjp/docker-mysql-shell:8.4 .\n```\n\n## Usage\n\nRun MySQL Shell container:\n\n```bash\n# Innovation Series\ndocker run -it snickerjp/docker-mysql-shell:9\n# or\ndocker run -it snickerjp/docker-mysql-shell:Innovation\n\n# LTS Series\ndocker run -it snickerjp/docker-mysql-shell:8.4\n# or\ndocker run -it snickerjp/docker-mysql-shell:LTS\n# or\ndocker run -it snickerjp/docker-mysql-shell:latest\n```\n\nTo connect to a MySQL Server:\n```bash\n# Innovation Series\ndocker run -it snickerjp/docker-mysql-shell:9 --uri mysql://user:pass@host:port/schema\n# or using Innovation tag\ndocker run -it snickerjp/docker-mysql-shell:Innovation --uri mysql://user:pass@host:port/schema\n\n# LTS Series\ndocker run -it snickerjp/docker-mysql-shell:8.4 --uri mysql://user:pass@host:port/schema\n# or using LTS tag\ndocker run -it snickerjp/docker-mysql-shell:LTS --uri mysql://user:pass@host:port/schema\n```\n\n## Development Workflow\n\n### Branch Strategy\n\n- `feat-*`: Feature branches for new features and improvements\n- `develop`: Integration branch for feature branches\n- `main`: Release branch\n\n### Pull Request Process\n\n1. Create a new feature branch from `develop`:\n```bash\ngit checkout develop\ngit pull origin develop\ngit checkout -b feat-your-feature-name\n```\n\n2. Make your changes and create a PR to `develop`\n3. After PR is merged to `develop`, it will be included in the next release PR\n4. Release PRs are automatically created from `develop` to `main` using git-pr-release\n\n### Protected Branches\n\n- `develop`: Requires PR review and successful status checks\n- `main`: Protected release branch, only accepts PRs from `develop`\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsnickerjp%2Fdocker-mysql-shell","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsnickerjp%2Fdocker-mysql-shell","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsnickerjp%2Fdocker-mysql-shell/lists"}