$ docker run --rm -it thinca/vim:latest
Sometimes terminal size is broken. (Maybe, Docker sets terminal size too late) Here is a workaround to this problem.
$ docker run --rm -it -e COLUMNS="$(tput cols)" -e LINES="$(tput lines)" thinca/vim
There are four types of images.
${version}-basic-alpine${version}-full-alpine${version}-basic-ubuntu${version}-full-ubuntu${version} is latest or tags from vim/vim such as v8.2.1234.
basic does not contain any extra features.
full contains +lua +mzscheme +perl +python +python3 +ruby +tcl +sound +gui_gtk3.
alpine is based on Alpine Linux.
ubuntu is based on Ubuntu.
${version}
${version}-basic-alpine${version}-basic
${version}-basic-alpine${version}-full
${version}-full-alpine${version}-alpine
${version}-basic-alpine${version}-ubuntu
${version}-basic-ubuntuThe repository of Dockerfile is here:
Content type
Image
Digest
sha256:deabbf6dc…
Size
19 MB
Last updated
3 days ago
docker pull thinca/vim