An open API service indexing awesome lists of open source software.

https://github.com/bootjp/nvim-container-image


https://github.com/bootjp/nvim-container-image

Last synced: 4 months ago
JSON representation

Awesome Lists containing this project

README

          

# nvim-container-image

## what is this

これは bootjp が開発に用いる nvim のコンテナイメージです。
`Dockerfile` の `ENV` と git submodule の参照先を自身の dotfiles にすることでオリジナルのイメージが作成できます。

## how to use

### using this container image

```bash
docker run -it --rm -v ${PWD}:/home/bootjp/src/any_project \
-v ~/.ssh/:/home/bootjp/.ssh/ \
ghcr.io/bootjp/nvim-container:latest bash
```

### build and publish

```bash
docker build -t ghcr.io/bootjp/nvim-container:latest .

# push is automation build
```