Merge pull request #102 from KabirKwatra/patch-1

Docker and Kubernetes image names and CLI options
This commit is contained in:
Luke Stephens (hakluke) 2020-01-09 23:18:48 +10:00 committed by GitHub
commit d2490215ea
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -233,7 +233,7 @@ Credit: @tartansandal
If you run Vim in a docker container like:
```bash
docker run --rm -it --name my-vim -v `pwd`:/root thinkca/vim
docker run --name my-vim -v `pwd`:/root thinca/vim
```
then you would normally exit vim by stopping the associated container:
@ -286,7 +286,7 @@ Credit: @Evalle
If you run Vim in Kubernetes pod like:
```bash
kubectl run --generator=run-pod/v1 --rm -it my-vim --image=thinkca/vim
kubectl run --generator=run-pod/v1 my-vim --image=thinca/vim
```
then you would normally exit Vim by deleting the associated Kubernetes pod: