{"id":17984407,"url":"https://github.com/adoyle-h/mycli-docker","last_synced_at":"2026-04-28T08:03:56.112Z","repository":{"id":149887614,"uuid":"193257558","full_name":"adoyle-h/mycli-docker","owner":"adoyle-h","description":"A Dockerfile for mycli.","archived":false,"fork":false,"pushed_at":"2019-06-22T17:00:18.000Z","size":6,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-04-04T02:15:15.212Z","etag":null,"topics":["docker","dockerfile","mycli"],"latest_commit_sha":null,"homepage":null,"language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/adoyle-h.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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},"funding":{"patreon":"adoyle_h","liberapay":"adoyle","custom":["https://media.githubusercontent.com/media/adoyle-h/_imgs/master/sponsor.png"]}},"created_at":"2019-06-22T16:49:58.000Z","updated_at":"2019-06-22T17:00:20.000Z","dependencies_parsed_at":null,"dependency_job_id":"3cba5092-eb3c-4c62-983c-ed31a491adb0","html_url":"https://github.com/adoyle-h/mycli-docker","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/adoyle-h/mycli-docker","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adoyle-h%2Fmycli-docker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adoyle-h%2Fmycli-docker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adoyle-h%2Fmycli-docker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adoyle-h%2Fmycli-docker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/adoyle-h","download_url":"https://codeload.github.com/adoyle-h/mycli-docker/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adoyle-h%2Fmycli-docker/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32371677,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-27T20:07:02.737Z","status":"online","status_checked_at":"2026-04-28T02:00:07.250Z","response_time":56,"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","dockerfile","mycli"],"created_at":"2024-10-29T18:21:16.718Z","updated_at":"2026-04-28T08:03:55.893Z","avatar_url":"https://github.com/adoyle-h.png","language":"Shell","funding_links":["https://patreon.com/adoyle_h","https://liberapay.com/adoyle","https://media.githubusercontent.com/media/adoyle-h/_imgs/master/sponsor.png"],"categories":[],"sub_categories":[],"readme":"# mycli-docker\n\nA Dockerfile for [mycli][].\n\n## TOC\n\n\u003c!-- MarkdownTOC GFM --\u003e\n\n- [Usage](#usage)\n- [Image Size](#image-size)\n- [Developing](#developing)\n- [Suggestion, Bug Reporting, Contributing](#suggestion-bug-reporting-contributing)\n- [Versioning](#versioning)\n- [Copyright and License](#copyright-and-license)\n\n\u003c!-- /MarkdownTOC --\u003e\n\n## Usage\n\nI have built an docker image in https://hub.docker.com/r/adoyle/mycli .\n\nYou can use it directly, or build image by yourself (See [Developing](#developing)).\n\n```sh\ndocker pull adoyle/mycli:1.19.0\ndocker run --net=host --rm -it adoyle/mycli:1.19.0 -h \"$HOST\" -P \"$PORT\" -p \"$PASSWORD\" -u \"$USER\" \"$DB\"\n# or invoke the \"run\" script\n./run -h \"$HOST\" -P \"$PORT\" -p \"$PASSWORD\" -u \"$USER\" \"$DB\"\n```\n\n## Image Size\n\n```\nREPOSITORY          TAG                 IMAGE ID            CREATED             SIZE\nadoyle/mycli        1.19.0              2773b149a270        10 minutes ago      104MB\npython              3.7.3-alpine3.9     fe3ef29c73f3        6 weeks ago         87MB\n```\n\nThe adoyle/mycli is based on python:3.7.3-alpine3.9 image. The mycli layer only uses 17MB.\n\n## Developing\n\n```sh\n# build image\n./build\n\n# run container\n./run -h \"$HOST\" -P \"$PORT\" -p \"$PASSWORD\" -u \"$USER\" \"$DB\"\n```\n\nTo build different version of mycli.\n\n```sh\nVERSION=1.19.0 ./build\nVERSION=1.19.0 ./run -h \"$HOST\" -P \"$PORT\" -p \"$PASSWORD\" -u \"$USER\" \"$DB\"\n```\n\n## Suggestion, Bug Reporting, Contributing\n\nAny suggestions and contributions are always welcome. Please open an [issue][] to talk with me.\n\n## Versioning\n\nThe versioning follows the rules of SemVer 2.0.0.\n\n**Attentions**: anything may have **BREAKING CHANGES** at **ANY TIME** when major version is zero (0.y.z), which is for initial development and the public API should be considered unstable.\n\nFor more information on SemVer, please visit http://semver.org/.\n\n## Copyright and License\n\nCopyright (c) 2019 ADoyle \u003cadoyle.h@gmail.com\u003e. The project is licensed under the **Apache License Version 2.0**.\n\nSee the [LICENSE][] file for the specific language governing permissions and limitations under the License.\n\nSee the [NOTICE][] file distributed with this work for additional information regarding copyright ownership.\n\n\n\u003c!-- Links --\u003e\n\n[LICENSE]: ./LICENSE\n[NOTICE]: ./NOTICE\n[issue]: https://github.com/adoyle-h/mycli-docker/issues\n[mycli]: https://github.com/dbcli/mycli\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fadoyle-h%2Fmycli-docker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fadoyle-h%2Fmycli-docker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fadoyle-h%2Fmycli-docker/lists"}