VIM IDE 中文化 集成开发环境。Remote VIm Development Environment. All in one。 > 集成中文字体,中文locale环境
10K+
集成中文字体,中文locale环境
appotry/drop-in:latestEdit From: JAremko/drop-in

bloodstar/vim:latestjare/spacemacs 
Alpine LinuxVim + a ton of awesome plugins see bloodstar/vim:latestGolang development with bloodstar/go-tools containertmuxpowerlineMoshThe Tmux prefix is C-q other than that both Tmux and Vim binding are mostly default tmux.conf, .vimrc
Make sure to use "Solarized Dark" compatible theme or color palette may look weird.
docker create -v '/usr/lib/go' --name go-tools \
'bloodstar/go-tools' '/bin/true'
docker run -v $('pwd'):/home/developer/workspace \
--volumes-from go-tools \
-v ~/.ssh/pub_rsa:/etc/ssh_keys:ro \
-v /etc/localtime:/etc/localtime:ro \
-d -p 80:80 -p 8080:8080 -p 62222:62222 -p 60001:60001/udp \
--name drop-in bloodstar/drop-in
-v /etc/localtime:/etc/localtime:ro - makes tmux display local time
mosh --ssh="ssh -p 62222" -- developer@$<ip> tmux -u
mosh --ssh="ssh -o StrictHostKeyChecking=no -p 62222" -- developer@$<ip> tmux -u
#!/bin/bash
ip=$(docker inspect --format '{{ .NetworkSettings.IPAddress }}' drop-in)
mosh --ssh="ssh -p 62222" -- developer@$ip tmux -u
#!/bin/bash
dtc_id=$(docker ps -a -q --filter 'name=vim-go-tools')
if [[ -z "${dtc_id}" ]]; then
echo 'vim-go-tools container not found. Creating...'
docker create -v '/usr/lib/go' --name 'vim-go-tools' \
'bloodstar/go-tools' '/bin/true'
echo 'Done!'
fi
echo 'starting daemon...'
docker run -v $('pwd'):/home/developer/workspace \
--volumes-from vim-go-tools \
-v ~/.ssh/pub_rsa:/etc/ssh_keys:ro \
-v /etc/localtime:/etc/localtime:ro \
-e "GEMAIL=<github email>" \
-e "GNAME=<github name>" \
-d -p 80:80 -p 8080:8080 -p 62222:62222 -p 60001:60001/udp \
--name drop-in bloodstar/drop-in
echo 'Done!'
mosh ... --ssh="ssh -o StrictHostKeyChecking=no ..." ... to ignore server's identity.tmux -2 and make sure that client's TERM variable set to support 256 colorsLeave a comment if you found a bug or if you have a suggestion!
Content type
Image
Digest
sha256:cc1d598e9…
Size
577.5 MB
Last updated
almost 2 years ago
docker pull bloodstar/drop-in