Skip to content

shield-wall/lunarvim-docker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Lunarvim docker

Publish image on docker hub

Quick start

Warning

Make sure that fonts are installed into your host/machine, and set in your Terminal.

Let's use the image that we build above.

docker run --rm -it -v $(pwd):/app -v $HOME/.ssh/:/home/dev/.ssh/:ro -v $HOME/.config/lvim/config.lua:/home/dev/.config/lvim/config.lua -v /var/run/docker.sock:/var/run/docker.sock:ro docker shieldwalll/lunarvim

or you can configure it in your docker-compose.yml file

#docker-compose.override.yml

version: '3.8'

services:
  lvim:
    image: shieldwalll/lunarvim
    # entrypoint: lvim
    volumes:
      - ./:/app
      - ~/.ssh/:/home/dev/.ssh/:ro
      - ~/.config/lvim/config.lua:/home/dev/.config/lvim/config.lua
      - /var/run/docker.sock:/var/run/docker.sock:ro

and run

docker-compose run --rm lvim

//and after you access your container you run:

lvim

Note

You can also enable the entrypoint in your docker-composer.yml file with lvim!

Docker images

Lenguage image
Default shieldwalll/lunarvim
PHP shieldwalll/lunarvim:php

Others

User credentials

  • user: dev
  • password: dev

About

No description or website provided.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published