Created
October 12, 2016 21:16
-
-
Save erikh/4b6ef91b83b10d7b44da4f2d47112a5e to your computer and use it in GitHub Desktop.
This file contains 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
from "ubuntu" | |
packages = %w[ | |
ack-grep | |
zsh | |
tmux | |
build-essential | |
vim-nox | |
git | |
mercurial | |
ruby-full | |
curl | |
flex | |
bison | |
sudo | |
keychain | |
] | |
run "apt-get update" | |
run "apt-get dist-upgrade -y" | |
run "apt-get install -y #{packages.join(" ")}" | |
run "curl -sSL https://storage.googleapis.com/golang/go1.7.1.linux-amd64.tar.gz | tar -xvz -C /usr/local" | |
run "curl -sSL https://get.docker.com | bash" | |
run 'echo "erikh ALL=(ALL) NOPASSWD: ALL" >>/etc/sudoers' | |
# staff is what the docker sock will come in as when bind mounted | |
run "useradd erikh -G docker,sudo,staff -s /bin/zsh -m -d /home/erikh" | |
user "erikh" | |
workdir "/home/erikh" | |
copy ".", "config" | |
env "TERM" => "xterm-256color" | |
with_user "root" do | |
run "chown -R erikh:erikh config" | |
end | |
inside "/home/erikh/config" do | |
run "sh setup.sh" | |
end | |
run "vim +PluginUpdate +GoInstallBinaries +qall" | |
cmd "/bin/zsh -l" | |
tag "dev" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment