aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbloodstalker <thabogre@gmail.com>2020-09-03 15:25:44 +0000
committerbloodstalker <thabogre@gmail.com>2020-09-03 15:25:44 +0000
commit0502d6ecc7d6d47f2dfaa212609b4b637e3ae49a (patch)
tree2d7badef6e64dca691e7a48b0bec1e0d462de783
parentnew vim docker image (diff)
downloaddockerimages-0502d6ecc7d6d47f2dfaa212609b4b637e3ae49a.tar.gz
dockerimages-0502d6ecc7d6d47f2dfaa212609b4b637e3ae49a.zip
new gotty apline gotty image for mostly windows use
-rw-r--r--gotty/Dockerfile22
-rwxr-xr-xgotty/run.sh2
2 files changed, 24 insertions, 0 deletions
diff --git a/gotty/Dockerfile b/gotty/Dockerfile
new file mode 100644
index 0000000..1429ff5
--- /dev/null
+++ b/gotty/Dockerfile
@@ -0,0 +1,22 @@
+FROM alpine:3.12
+RUN apk update && apk upgrade
+RUN apk add tmux st vim ripgrep fzf curl wget git ctags zsh python3 lynx go
+
+RUN mkdir devi
+WORKDIR /devi
+
+RUN git clone https://github.com/nanotech/jellybeans.vim ~/.vim/bundle/jellybeans.vim
+RUN git clone http://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
+RUN git clone http://github.com/tpope/vim-surround ~/.vim/bundle/vim-surround
+RUN git clone http://github.com/easymotion/vim-easymotion ~/.vim/bundle/vim-easymotion
+RUN git clone http://github.com/ctrlpvim/ctrlp.vim ~/.vim/bundle/ctrlp.vim
+RUN git clone http://github.com/chrisbra/Recover.vim ~/.vim/bundle/Recover.vim
+RUN git clone http://github.com/unblevable/quick-scope ~/.vim/bundle/quick-scope
+RUN git clone http://github.com/tpope/vim-repeat ~/.vim/bundle/vim-repeat
+RUN git clone http://github.com/adelarsq/vim-matchit ~/.vim/bundle/vim-matchit
+RUN git clone http://github.com/majutsushi/tagbar ~/.vim/bundle/tagbar
+RUN git clone http://github.com/ludovicchabant/vim-gutentags ~/.vim/bundle/vim-gutentags
+RUN git clone http://github.com/mbbill/undotree ~/.vim/bundle/undotree
+
+RUN git clone http://github.com/terminaldweller/fedora && cd fedora/baseline && cp ./.vimrc ~/.vimrc
+RUN go get github.com/yudai/gotty
diff --git a/gotty/run.sh b/gotty/run.sh
new file mode 100755
index 0000000..2758ae7
--- /dev/null
+++ b/gotty/run.sh
@@ -0,0 +1,2 @@
+#!/usr/bin/env sh
+docker run -it --entrypoint ash $1