Skip to content

Instantly share code, notes, and snippets.

@parasquid
Last active July 6, 2020 14:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parasquid/2eecc55fc02b696cddcb02cb54d4ea27 to your computer and use it in GitHub Desktop.
Save parasquid/2eecc55fc02b696cddcb02cb54d4ea27 to your computer and use it in GitHub Desktop.
# install libraries
sudo apt install git variety build-essential htop python3-pip curl openssh-server screen
# install docker dependencies
sudo snap install docker
sudo groupadd docker
sudo usermod -aG docker $USER
pip3 install docker-compose
snap install kubectl --classic
# install javascript dependencies
curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
sudo apt update && sudo apt install --no-install-recommends yarn
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.3/install.sh | bash
# increases file io watchers
echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment