Development environment for applications with nodejs
303
🇪🇸 Entorno de desarrollo para aplicaciones con nodejs, con lazyvim con plugins como copilot como editor de codigo, lazygit para gestionar git y el plugin de neovim "nvim-notes" para gestionar y generar la documentacion.
sudo docker run -it -v /home/usuario/proyectos:/root/workspace andreakinder/nodejs-neovim-environment:latest sh 🇪🇸El comando sudo docker run permite crear y ejecutar un contenedor con opciones personalizadas. En este caso, se utiliza:
-it: Para abrir una terminal interactiva dentro del contenedor.-v /home/usuario/proyectos:/root/workspace: Para montar un volumen que comparte el directorio /home/usuario/proyectos del host con /root/workspace en el contenedor.andreakinder/nodejs-neovim-environment:v1.0: Especifica la imagen y su versión.bash: Ejecuta una shell Bash dentro del contenedor.sudo docker run -it -v /home/usuario/proyectos:/root/workspace andreakinder/nodejs-neovim-environment:latest sh
/root/workspace dentro del contenedor se reflejará en /home/usuario/proyectos en el host, y viceversa.Para salir de la terminal interactiva, escribe exit o presiona Ctrl+D. El contenedor se detendrá automáticamente.
🇺🇸 Development environment for applications with nodejs, with lazyvim with plugins such as copilot as a code editor, lazygit to manage git and the neovim plugin "nvim-notes" to manage and generate documentation.
sudo docker run -it -v /home/user/projects:/root/workspace andreakinder/nodejs-neovim-environment:latest bash 🇺🇸The sudo docker run command creates and runs a container with custom options. In this case:
-it: Opens an interactive terminal inside the container.-v /home/user/projects:/root/workspace: Mounts a volume that shares the /home/user/projects directory on the host with /root/workspace in the container.andreakinder/nodejs-neovim-environment:v1.0: Specifies the image and its version.bash: Executes a Bash shell inside the container.sudo docker run -it -v /home/usuario/proyectos:/root/workspace andreakinder/nodejs-neovim-environment:latest bash
/root/workspace inside the container will reflect in /home/user/projects on the host, and vice versa.To exit the interactive terminal, type exit or press Ctrl+D. The container will stop automatically.
Content type
Image
Digest
sha256:f5c2134e5…
Size
406.8 MB
Last updated
over 1 year ago
docker pull andkinder/nodejs-neovim-environment