{"id":20312676,"url":"https://github.com/danishprakash/vim-docker","last_synced_at":"2026-03-02T13:41:16.931Z","repository":{"id":131357163,"uuid":"205213676","full_name":"danishprakash/vim-docker","owner":"danishprakash","description":"Docker development plugin for Vim","archived":false,"fork":false,"pushed_at":"2019-10-31T15:54:30.000Z","size":29,"stargazers_count":20,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-11T16:59:28.673Z","etag":null,"topics":["docker","dockerfile","vim","vim-docker","vimscript"],"latest_commit_sha":null,"homepage":"","language":"Vim script","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/danishprakash.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,"zenodo":null}},"created_at":"2019-08-29T17:14:06.000Z","updated_at":"2024-06-03T12:52:27.000Z","dependencies_parsed_at":"2023-09-10T10:00:19.372Z","dependency_job_id":null,"html_url":"https://github.com/danishprakash/vim-docker","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/danishprakash/vim-docker","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/danishprakash%2Fvim-docker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/danishprakash%2Fvim-docker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/danishprakash%2Fvim-docker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/danishprakash%2Fvim-docker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/danishprakash","download_url":"https://codeload.github.com/danishprakash/vim-docker/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/danishprakash%2Fvim-docker/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30005034,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-02T12:19:43.414Z","status":"ssl_error","status_checked_at":"2026-03-02T12:19:02.215Z","response_time":60,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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","vim","vim-docker","vimscript"],"created_at":"2024-11-14T18:07:08.988Z","updated_at":"2026-03-02T13:41:16.927Z","avatar_url":"https://github.com/danishprakash.png","language":"Vim script","funding_links":[],"categories":[],"sub_categories":[],"readme":"# vim-docker\nDocker development plugin for Vim\n\n## Features\nvim-docker adds Docker development support for Vim with support for the following features:\n\n* Look up Dockerfile instructions with `:DockerDocBrowse`.\n* Quickly open base Docker image with `:DockerHubBrowse`.\n* Use `:DockerPush` to push Docker images asynchronously to specified registry.\n* Easily build Docker images asynchronously with `:DockerBuild`.\n* Tag Docker images with `:DockerTag`.\n* Syntax highlighting for Dockerfile.\n* Write Dockerfiles faster using snippets for commonly used instructions.\n\n## Installation\nvim-docker can be installed via the following plugin managers for Vim:\n\n* [vim-plug](https://github.com/junegunn/vim-plug)\n  * `Plug 'danishprakash/vim-docker'`\n* [Vim 8 packages](http://vimhelp.appspot.com/repeat.txt.html#packages)\n  * `git clone https://github.com/danishprakash/vim-docker.git ~/.vim/pack/plugins/start/vim-docker`\n* [Pathogen](https://github.com/tpope/vim-pathogen)\n  * `git clone https://github.com/danishprakash/vim-docker.git ~/.vim/bundle/vim-docker`\n* [Vundle](https://github.com/VundleVim/Vundle.vim)\n  * `Plugin 'danishprakash/vim-docker'`\n\n## Usage\n\n### Commands\n\n- `:DockerDocBrowse`\n    - Opens official Docker reference for the instruction under cursor using `open` or `xdg-open` on the default browser.\n- `:DockerHubBrowse` \n    - Opens Docker hub page for the base image regardless of variant or version using `open` or `xdg-open` on the default browser.\n- `:DockerPush`\n    - Push Docker image to the specified registry using `jobs`.\n    - Requires one argument - `image_name`.\n    - Eg `:DockerPush \u003cbuilt_image\u003e`\n- `:DockerBuild`\n    - Builds Docker image, uses image label specified by `-t`.\n    - Eg `:DockerBuild -t \u003coptional_label\u003e`\n- `:DockerTag`\n    - Tags Docker image, accepts required arguments.\n    - Eg `:DockerTag \u003cbuilt_image\u003e \u003ctag\u003e`\n\n### Extras\n\n- Snippets\n    - Snippets for most commonly used instructions while writing Dockerfiles quickly and easily.\n- Internal Mappings\n    - Non-problematic configuration using internal mappings.\n- Syntax Highlighting\n\n**Note**: vim-docker uses `job-control` for asynchronous processing and is still under active development.\n\n## Contributing\nDo you want to make this better? Open an issue and/or a PR on Github. Thanks!\n\n## License\n\nGPL-3.0 - see [`LICENSE`](LICENSE) for more details\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdanishprakash%2Fvim-docker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdanishprakash%2Fvim-docker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdanishprakash%2Fvim-docker/lists"}