Last active
July 6, 2020 14:03
-
-
Save parasquid/2eecc55fc02b696cddcb02cb54d4ea27 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
# 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