Skip to content

Commit 2853082

Browse files
committed
Initial import
0 parents  commit 2853082

File tree

7 files changed

+335
-0
lines changed

7 files changed

+335
-0
lines changed

base-user/Dockerfile

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
FROM debian:jessie
2+
3+
#DEPS
4+
RUN apt-get update && apt-get install -y sudo locales locales-all
5+
6+
#LOCALE
7+
ENV LANG en_US.UTF-8
8+
ENV LC_ALL $LANG
9+
RUN sudo update-locale LC_ALL=$LANG LANG=$LANG
10+
11+
#ADD NORMAL USER
12+
RUN useradd -m docker && echo "docker:docker" | chpasswd && adduser docker sudo
13+
RUN echo '%sudo ALL=(ALL) NOPASSWD:ALL' >> /etc/sudoers
14+
USER docker
15+
16+
#USER ENV
17+
ENV HOME /home/docker
18+
ENV TOOLS_PATH $HOME/tools
19+
ENV DEV_PATH $HOME/dev
20+
#ENV LANG en_US.UTF-8
21+
#ENV LC_ALL en_US.UTF-8
22+
23+
RUN mkdir -p $TOOLS_PATH $DEV_PATH $HOME/bin
24+
WORKDIR $TOOLS_PATH

go/Dockerfile

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
FROM netbrain/base-user
2+
3+
RUN sudo apt-get -y install libncurses5-dev python-dev \
4+
ruby-dev git python2.7 build-essential libncurses5-dev
5+
6+
WORKDIR $TOOLS_PATH
7+
8+
RUN git clone https://go.googlesource.com/go
9+
10+
RUN cp -R go go1.4
11+
12+
RUN (cd go1.4 && git checkout go1.4 && cd src && ./all.bash)
13+
14+
ENV GOROOT_BOOTSTRAP=$TOOLS_PATH/go1.4
15+
16+
RUN (cd go && git checkout go1.5 && cd src && ./all.bash )
17+
18+
ENV GOROOT=$TOOLS_PATH/go
19+
20+
ENV GOPATH=$HOME/dev/go
21+
22+
ENV PATH=$PATH:$GOROOT/bin
23+
24+
WORKDIR $HOME

keepers

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
docker run -v /tmp/.X11-unix:/tmp/.X11-unix -e DPLAY=unix$DISPLAY --link friport_db_1:db -it tianon/robomongo

vim-base/.vimrc

+107
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,107 @@
1+
set nocompatible " be iMproved, required
2+
filetype off " required
3+
4+
" VUNDLE
5+
" set the runtime path to include Vundle and initialize
6+
set rtp+=~/.vim/bundle/Vundle.vim
7+
call vundle#begin()
8+
" alternatively, pass a path where Vundle should install plugins
9+
"call vundle#begin('~/some/path/here')
10+
11+
" let Vundle manage Vundle, required
12+
Plugin 'VundleVim/Vundle.vim'
13+
14+
" NERDTREE
15+
Plugin 'scrooloose/nerdtree'
16+
17+
" SYNTASTIC
18+
Plugin 'scrooloose/syntastic'
19+
20+
" VIM-GO
21+
Plugin 'fatih/vim-go'
22+
23+
" FUGITIVE
24+
" Plugin 'tpope/vim-fugitive'
25+
26+
" TAGBAR
27+
Plugin 'majutsushi/tagbar'
28+
29+
" YOUCOMPLETEME
30+
Plugin 'Valloric/YouCompleteMe'
31+
32+
" BUFTABLINE
33+
Plugin 'ap/vim-buftabline'
34+
35+
" COLORSCHEMES
36+
Plugin 'flazz/vim-colorschemes'
37+
38+
" All of your Plugins must be added before the following line
39+
call vundle#end() " required
40+
filetype plugin indent on " required
41+
" To ignore plugin indent changes, instead use:
42+
"filetype plugin on
43+
"
44+
" Brief help
45+
" :PluginList - lists configured plugins
46+
" :PluginInstall - installs plugins; append `!` to update or just :PluginUpdate
47+
" :PluginSearch foo - searches for foo; append `!` to refresh local cache
48+
" :PluginClean - confirms removal of unused plugins; append `!` to auto-approve removal
49+
"
50+
" see :h vundle for more details or wiki for FAQ
51+
" Put your non-Plugin stuff after this line
52+
if exists("g:vic")
53+
set mouse=a " enable mouse
54+
syntax on " enable syntax higlighting
55+
let mapleader = "," " set leader to ,
56+
set hlsearch " show matches during searching
57+
set backspace=2 " set normal backspace
58+
colorscheme molokai " set colorscheme
59+
60+
autocmd VimEnter * NERDTree
61+
autocmd VimEnter * TagbarOpen
62+
autocmd VimEnter * wincmd l
63+
64+
" NERDTREE
65+
let g:NERDTreeDirArrows = 1
66+
let g:NERDTreeDirArrowExpandable = ''
67+
let g:NERDTreeDirArrowCollapsible = ''
68+
69+
map <Leader>n :NERDTreeToggle<CR>
70+
71+
" SYNTASTIC
72+
"set statusline+=%#warningmsg#
73+
"set statusline+=%{SyntasticStatuslineFlag()}
74+
"set statusline+=%*
75+
76+
let g:syntastic_always_populate_loc_list = 1
77+
let g:syntastic_auto_loc_list = 1
78+
let g:syntastic_check_on_open = 1
79+
let g:syntastic_check_on_wq = 0
80+
81+
" VIM-GO
82+
let g:go_highlight_functions = 1
83+
let g:go_highlight_methods = 1
84+
let g:go_highlight_structs = 1
85+
let g:go_highlight_operators = 1
86+
let g:go_highlight_build_constraints = 1
87+
88+
" Enable goimports to automatically insert import paths instead of gofmt:
89+
let g:go_fmt_command = "goimports"
90+
91+
" shows errors for the fmt command
92+
let g:go_fmt_fail_silently = 0
93+
94+
" auto fmt on save:
95+
let g:go_fmt_autosave = 1
96+
97+
" Disable opening browser after posting your snippet to play.golang.org:
98+
let g:go_play_open_browser = 0
99+
100+
" TAGBAR
101+
nmap <Leader>m :TagbarToggle<CR>
102+
103+
" BUFTABLINE
104+
set hidden
105+
nnoremap <C-N> :bnext<CR>
106+
nnoremap <C-P> :bprev<CR>
107+
endif

vim-base/Dockerfile

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
FROM netbrain/base-user
2+
3+
ENV VIM_HOME=$TOOLS_PATH/vim
4+
5+
ENV TERM xterm-256color
6+
7+
RUN sudo apt-get -y install git build-essential libncurses5-dev python-dev
8+
9+
RUN ( git clone https://github.com/vim/vim $VIM_HOME && \
10+
cd $VIM_HOME && ./configure \
11+
--prefix=$VIM_HOME \
12+
--with-features=huge \
13+
--enable-multibyte \
14+
--enable-rubyinterp \
15+
--enable-pythoninterp \
16+
--with-python-config-dir=/usr/lib/python2.7/config \
17+
--enable-perlinterp \
18+
--enable-luainterp \
19+
--enable-cscope \
20+
&& make && make install )
21+
22+
ENV PATH=$PATH:$VIM_HOME/bin
23+
24+
RUN git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
25+
26+
ADD .vimrc $HOME/.vimrc
27+
28+
RUN vim -i NONE -c VundleInstall -c GoInstallBinaries -c quitall
29+
30+
RUN (sudo apt-get -y install cmake exuberant-ctags && cd $HOME/.vim/bundle/YouCompleteMe && ./install.py)
31+
32+
RUN (echo "let g:vic = 1" | cat - $HOME/.vimrc > /tmp/out && mv /tmp/out $HOME/.vimrc)
33+
34+
WORKDIR $HOME
35+
36+

vim-go/.vimrc

+107
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,107 @@
1+
set nocompatible " be iMproved, required
2+
filetype off " required
3+
4+
" VUNDLE
5+
" set the runtime path to include Vundle and initialize
6+
set rtp+=~/.vim/bundle/Vundle.vim
7+
call vundle#begin()
8+
" alternatively, pass a path where Vundle should install plugins
9+
"call vundle#begin('~/some/path/here')
10+
11+
" let Vundle manage Vundle, required
12+
Plugin 'VundleVim/Vundle.vim'
13+
14+
" NERDTREE
15+
Plugin 'scrooloose/nerdtree'
16+
17+
" SYNTASTIC
18+
Plugin 'scrooloose/syntastic'
19+
20+
" VIM-GO
21+
Plugin 'fatih/vim-go'
22+
23+
" FUGITIVE
24+
" Plugin 'tpope/vim-fugitive'
25+
26+
" TAGBAR
27+
Plugin 'majutsushi/tagbar'
28+
29+
" YOUCOMPLETEME
30+
Plugin 'Valloric/YouCompleteMe'
31+
32+
" BUFTABLINE
33+
Plugin 'ap/vim-buftabline'
34+
35+
" COLORSCHEMES
36+
Plugin 'flazz/vim-colorschemes'
37+
38+
" All of your Plugins must be added before the following line
39+
call vundle#end() " required
40+
filetype plugin indent on " required
41+
" To ignore plugin indent changes, instead use:
42+
"filetype plugin on
43+
"
44+
" Brief help
45+
" :PluginList - lists configured plugins
46+
" :PluginInstall - installs plugins; append `!` to update or just :PluginUpdate
47+
" :PluginSearch foo - searches for foo; append `!` to refresh local cache
48+
" :PluginClean - confirms removal of unused plugins; append `!` to auto-approve removal
49+
"
50+
" see :h vundle for more details or wiki for FAQ
51+
" Put your non-Plugin stuff after this line
52+
if exists("g:vic")
53+
set mouse=a " enable mouse
54+
syntax on " enable syntax higlighting
55+
let mapleader = "," " set leader to ,
56+
set hlsearch " show matches during searching
57+
set backspace=2 " set normal backspace
58+
colorscheme molokai " set colorscheme
59+
60+
autocmd VimEnter * NERDTree
61+
autocmd VimEnter * TagbarOpen
62+
autocmd VimEnter * wincmd l
63+
64+
" NERDTREE
65+
let g:NERDTreeDirArrows = 1
66+
let g:NERDTreeDirArrowExpandable = ''
67+
let g:NERDTreeDirArrowCollapsible = ''
68+
69+
map <Leader>n :NERDTreeToggle<CR>
70+
71+
" SYNTASTIC
72+
"set statusline+=%#warningmsg#
73+
"set statusline+=%{SyntasticStatuslineFlag()}
74+
"set statusline+=%*
75+
76+
let g:syntastic_always_populate_loc_list = 1
77+
let g:syntastic_auto_loc_list = 1
78+
let g:syntastic_check_on_open = 1
79+
let g:syntastic_check_on_wq = 0
80+
81+
" VIM-GO
82+
let g:go_highlight_functions = 1
83+
let g:go_highlight_methods = 1
84+
let g:go_highlight_structs = 1
85+
let g:go_highlight_operators = 1
86+
let g:go_highlight_build_constraints = 1
87+
88+
" Enable goimports to automatically insert import paths instead of gofmt:
89+
let g:go_fmt_command = "goimports"
90+
91+
" shows errors for the fmt command
92+
let g:go_fmt_fail_silently = 0
93+
94+
" auto fmt on save:
95+
let g:go_fmt_autosave = 1
96+
97+
" Disable opening browser after posting your snippet to play.golang.org:
98+
let g:go_play_open_browser = 0
99+
100+
" TAGBAR
101+
nmap <Leader>m :TagbarToggle<CR>
102+
103+
" BUFTABLINE
104+
set hidden
105+
nnoremap <C-N> :bnext<CR>
106+
nnoremap <C-P> :bprev<CR>
107+
endif

vim-go/Dockerfile

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
FROM netbrain/go
2+
3+
ENV MAKEFLAGS="-j4"
4+
5+
ENV VIM_HOME=$TOOLS_PATH/vim
6+
7+
RUN ( git clone https://github.com/vim/vim $VIM_HOME && \
8+
cd $VIM_HOME && ./configure \
9+
--prefix=$VIM_HOME \
10+
--with-features=huge \
11+
--enable-multibyte \
12+
--enable-rubyinterp \
13+
--enable-pythoninterp \
14+
--with-python-config-dir=/usr/lib/python2.7/config \
15+
--enable-perlinterp \
16+
--enable-luainterp \
17+
--enable-cscope \
18+
&& make && make install )
19+
20+
ENV PATH=$PATH:$VIM_HOME/bin
21+
22+
RUN git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
23+
24+
ADD .vimrc $HOME/.vimrc
25+
26+
RUN vim -i NONE -c VundleInstall -c GoInstallBinaries -c quitall
27+
28+
RUN (sudo apt-get -y install cmake exuberant-ctags && cd $HOME/.vim/bundle/YouCompleteMe && ./install.py)
29+
30+
RUN (echo "let g:vic = 1" | cat - $HOME/.vimrc > /tmp/out && mv /tmp/out $HOME/.vimrc)
31+
32+
WORKDIR $HOME
33+
34+
ENV TERM xterm-256color
35+
36+
CMD vim $GOPATH

0 commit comments

Comments
 (0)