https://github.com/bootjp/nvim-container-image
https://github.com/bootjp/nvim-container-image
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/bootjp/nvim-container-image
- Owner: bootjp
- Created: 2021-04-10T08:11:31.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-04-20T04:06:49.000Z (about 5 years ago)
- Last Synced: 2025-05-27T00:04:50.431Z (about 1 year ago)
- Language: Dockerfile
- Size: 8.79 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```