kolserdav/coc-nvim-rust

By kolserdav

Updated about 2 years ago

A Docker container containing the Neovim Coc plugin with the Rust language server.

Image
Languages & frameworks
Developer tools
0

349

kolserdav/coc-nvim-rust repository overview

Coc Neovim rust dockerized

Docker container which has Neovim's Coc plugin with "rust" language server.

Running
  • Docker run
docker run -e "NEOVIM_UID=1000" -e "NEOVIM_GID=1000" -e "NEOVIM_MNT_DIR=/path/to/project" -v /path/to/project:/mnt/project kolserdav/coc-neovim-rust:latest 
  • Docker compose
services:
  neovim:
    image: kolserdav/coc-nvim-rust
    container_name: neovim-rust
    environment:
      UID: ${NEOVIM_UID}
      GID: ${NEOVIM_GID}
    volumes:
      - ${NEOVIM_MNT_DIR}:/mnt/project
      - neovim:/home/node/.local/share
        #- ./custom.sh:/home/node/custom.sh
    hostname: neovim-rust
volumes:
  neovim: {}
Required environment variables
  • NEOVIM_UID - Host system user id
  • NEOVIM_GID - Host system group id
Volumes
  • /path/to/project:/mnt/project - Access to project files from container
  • neovim:/home/node/.local/share - Save nvim config between container recreates

Source: coc-nvim-dockerized

Tag summary

Content type

Image

Digest

sha256:b2b6313eb

Size

1 GB

Last updated

about 2 years ago

docker pull kolserdav/coc-nvim-rust