kolserdav/coc-nvim-python

By kolserdav

Updated about 2 years ago

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

Image
Languages & frameworks
Developer tools
0

410

kolserdav/coc-nvim-python repository overview

Coc Neovim python dockerized

Docker container which has Neovim's Coc plugin with "python" 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-python:latest 
  • Docker compose
services:
  neovim:
    image: kolserdav/coc-nvim-python
    container_name: neovim-python
    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-python
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:35992fb67

Size

899.7 MB

Last updated

about 2 years ago

docker pull kolserdav/coc-nvim-python