A Docker container containing the Neovim Coc plugin with the Python language server.
410
Docker container which has Neovim's Coc plugin with "python" language server.
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
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: {}
NEOVIM_UID - Host system user idNEOVIM_GID - Host system group id/path/to/project:/mnt/project - Access to project files from containerneovim:/home/node/.local/share - Save nvim config between container recreatesSource: coc-nvim-dockerized
Content type
Image
Digest
sha256:35992fb67…
Size
899.7 MB
Last updated
about 2 years ago
docker pull kolserdav/coc-nvim-python