Skip to content

Instantly share code, notes, and snippets.

@itbcodedev
Created January 21, 2020 02:09
Show Gist options
  • Select an option

  • Save itbcodedev/99c806ff026e06be95b294cfd7f9d58a to your computer and use it in GitHub Desktop.

Select an option

Save itbcodedev/99c806ff026e06be95b294cfd7f9d58a to your computer and use it in GitHub Desktop.
Post install
#!/bin/bash
#install java
sudo apt install openjdk-13-jdk
sudo apt install openjdk-8-jdk
sudo apt install openjdk-11-jdk
sudo update-alternatives --config java
#install docker
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu disco stable test"
sudo apt update
sudo apt install docker-ce docker-ce-cli containerd.io
sudo adduser $(whoami) docker
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment