File tree Expand file tree Collapse file tree 7 files changed +455
-22
lines changed Expand file tree Collapse file tree 7 files changed +455
-22
lines changed Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
- apt-get update
3
- apt-get install software-properties-common -y
4
- add-apt-repository ppa:jonathonf/vim -y
5
- add-apt-repository ppa:graphics-drivers -y
6
- apt-get update
7
- apt-get upgrade -y
8
- apt-get install python3-pip zip unzip wget tmux git screen htop vim iputils iputils-ping nfs-common default-jre -y
9
- sudo -H pip3 install --upgrade pip
2
+
3
+ printf " \n\nInstalling updates...\n\n"
4
+ sudo apt-get update
5
+ sudo apt-get install software-properties-common -y
6
+ sudo add-apt-repository ppa:jonathonf/vim -y
7
+ sudo add-apt-repository ppa:graphics-drivers -y
8
+ sudo apt-get update
9
+ sudo apt-get upgrade -y
10
+
11
+ printf " \n\nInstalling apt packages...\n\n"
12
+ sudo apt-get install python3-pip zip unzip wget tmux git screen htop vim iputils-ping nfs-common default-jre -y
13
+
14
+
10
15
Original file line number Diff line number Diff line change 2
2
3
3
apt-get install ca-certificates gnupg lsb-release -y
4
4
apt-get remove docker docker-engine docker.io containerd runc -y
5
- curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg
5
+ curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg -y
6
6
echo \
7
7
" deb [arch=$( dpkg --print-architecture) signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/ubuntu \
8
8
$( lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
9
9
10
10
apt-get update
11
11
apt-get upgrade -y
12
- apt-get install docker-ce docker-ce-cli containerd.io
13
- docker run hello-world
12
+ apt-get install docker-ce docker-ce-cli containerd.io -y
You can’t perform that action at this time.
0 commit comments