This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
echo "Moving to home directory" | |
cd ~/ | |
echo "Setting up git defaults" | |
git clone https://github.com/thestonefox/git-config.git | |
ln -s git-config/.gitconfig ~/.gitconfig | |
ln -s git-ignore/.gitignore ~/.gitignore | |
git-config/helpers.sh |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
function start() { | |
docker build -rm -t myapp_image . | |
docker run -d -name myapp_container myapp_image | |
} | |
function stop() { | |
docker stop myapp_container && docker rm myapp_container | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Setup SSH Access | |
RUN apt-get -q -y update | |
RUN apt-get install -q -y openssl whois openssh-server vim nano | |
RUN mkdir -p /root/.ssh | |
RUN chown -R root:root /root/.ssh | |
RUN chmod -R 600 /root/.ssh/ | |
RUN mkdir -p /var/run/sshd | |
RUN printf "#!/bin/bash \ | |
\n echo \"root:password\" |chpasswd \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#### COLOUR (Solarized 256) | |
# default statusbar colors | |
set-option -g status-bg colour235 #base02 | |
set-option -g status-fg colour136 #yellow | |
set-option -g status-attr default | |
# default window title colors | |
set-window-option -g window-status-fg colour244 #base0 | |
set-window-option -g window-status-bg default |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
execute pathogen#infect() | |
syntax on | |
set number | |
set expandtab | |
set tabstop=2 | |
set background=dark | |
set t_Co=256 | |
let g:solarized_termcolors=256 | |
let g:solarized_termtrans=1 |
NewerOlder