{"id":13484440,"url":"https://github.com/vim-denops/denops-dockerfile","last_synced_at":"2025-07-09T00:32:09.654Z","repository":{"id":42196552,"uuid":"411303057","full_name":"vim-denops/denops-dockerfile","owner":"vim-denops","description":"🐳  Dockerfiles to quickly construct a denops available Vim/Neovim environment","archived":false,"fork":false,"pushed_at":"2024-08-12T21:36:24.000Z","size":53,"stargazers_count":17,"open_issues_count":0,"forks_count":4,"subscribers_count":2,"default_branch":"main","last_synced_at":"2024-10-30T18:42:40.205Z","etag":null,"topics":["docker","dockerfile","neovim","vim"],"latest_commit_sha":null,"homepage":"","language":"Makefile","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/vim-denops.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}},"created_at":"2021-09-28T13:54:52.000Z","updated_at":"2024-08-12T21:36:27.000Z","dependencies_parsed_at":"2024-01-13T18:08:56.831Z","dependency_job_id":"5b8bd023-39ba-47aa-8edf-d8624bce81cc","html_url":"https://github.com/vim-denops/denops-dockerfile","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/vim-denops%2Fdenops-dockerfile","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vim-denops%2Fdenops-dockerfile/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vim-denops%2Fdenops-dockerfile/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vim-denops%2Fdenops-dockerfile/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/vim-denops","download_url":"https://codeload.github.com/vim-denops/denops-dockerfile/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":225472605,"owners_count":17479650,"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":["docker","dockerfile","neovim","vim"],"created_at":"2024-07-31T17:01:24.458Z","updated_at":"2024-11-20T05:22:10.770Z","avatar_url":"https://github.com/vim-denops.png","language":"Makefile","funding_links":[],"categories":["Makefile","Others"],"sub_categories":[],"readme":"# denops-dockerfile\n\n[![Build](https://github.com/vim-denops/denops-dockerfile/actions/workflows/build.yml/badge.svg)](https://github.com/vim-denops/denops-dockerfile/actions/workflows/build.yml)\n\n## Usage\n\n### Minimum\n\nCreate a new docker image from [ghcr.io/vim-denops/vim][] or [ghcr.io/vim-denops/neovim][] and clone Vim plugins in working directory like\n\n```Dockerfile\nFROM ghcr.io/vim-denops/vim\n\nRUN apt-get update \\\n \u0026\u0026 apt-get install -y --no-install-recommends \\\n      curl \\\n      ca-certificates \\\n      ripgrep\n\nARG VERSION=main\nRUN curl -sSL https://github.com/vim-denops/denops-helloworld.vim/archive/${VERSION}.tar.gz \\\n  | tar xz \\\n \u0026\u0026 deno cache --no-check=remote */denops/**/*.ts\n```\n\nThen build and run the image like\n\n```\ndocker build -f Dockerfile -t vim .\ndocker run --rm -it vim\n```\n\nSee [examples/denops-helloworld.vim](./examples/denops-helloworld.vim) for details.\n\n### Advanced\n\nIf you need to define `.vimrc`, copy it to `/root/.vimrc` (Vim) or `/root/.config/nvim/init.vim` (Neovim).\n\nFor example, [Shougo/ddc.vim](https://github.com/Shougo/ddc.vim) requires `.vimrc` like\n\n```vim\n\" Load all plugins\npackloadall\n\n\" Customize global settings\n\" Use around source.\n\" https://github.com/Shougo/ddc-around\ncall ddc#custom#patch_global('sources', ['around'])\n\n\" Use matcher_head and sorter_rank.\n\" https://github.com/Shougo/ddc-matcher_head\n\" https://github.com/Shougo/ddc-sorter_rank\ncall ddc#custom#patch_global('sourceOptions', {\n      \\ '_': {\n      \\   'matchers': ['matcher_head'],\n      \\   'sorters': ['sorter_rank']},\n      \\ })\n\n\" Use ddc.\ncall ddc#enable()\n```\n\nCopy above `.vimrc` with `COPY` command like\n\n```Dockerfile\nFROM ghcr.io/vim-denops/vim\n\nRUN apt-get update \\\n \u0026\u0026 apt-get install -y --no-install-recommends \\\n      ca-certificates \\\n      git\n\nRUN git clone https://github.com/Shougo/ddc.vim \\\n \u0026\u0026 git clone https://github.com/Shougo/ddc-around \\\n \u0026\u0026 git clone https://github.com/Shougo/ddc-matcher_head \\\n \u0026\u0026 git clone https://github.com/Shougo/ddc-sorter_rank \\\n \u0026\u0026 deno cache --no-check=remote */denops/**/*.ts\n\nCOPY vimrc /root/.vimrc\n```\n\nThen build and run the image like\n\n```\ndocker build -f Dockerfile -t vim .\ndocker run --rm -it vim\n```\n\nSee [examples/ddc.vim](./examples/ddc.vim) for details.\n\n[ghcr.io/vim-denops/vim]: https://github.com/vim-denops/denops-dockerfile/pkgs/container/vim\n[ghcr.io/vim-denops/neovim]: https://github.com/vim-denops/denops-dockerfile/pkgs/container/neovim\n\n## Development\n\nBuild [ghcr.io/vim-denops/vim][] and [ghcr.io/vim-denops/neovim][] with\n\n```\nmake build\n```\n\nThe push it with\n\n```\nmake push\n```\n\n## License\n\nThe code follows MIT license written in [LICENSE](./LICENSE). Contributors need\nto agree that any modifications sent in this repository follow the license.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvim-denops%2Fdenops-dockerfile","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvim-denops%2Fdenops-dockerfile","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvim-denops%2Fdenops-dockerfile/lists"}