Finished Docker install

This commit is contained in:
Ryan Bakkes 2021-09-25 22:31:03 +02:00
parent b3af44668a
commit 8579114cd0
3 changed files with 17 additions and 3 deletions

View File

@ -7,7 +7,7 @@ Installify is a Bash shell script to download new software and applications.
* Chromium (TO-DO)
* Defold (TO-DO)
* Discord (TO-DO)
* Docker (TO-DO)
* Docker
* Firefox
* Gcc
* Git
@ -77,6 +77,6 @@ Install all files with Oh-My-Zsh:
$ sudo ./install.sh -az
```
## TO-DO
# TO-DO
Name change BashInstaller -> Installify
See applications and software tab

15
src/applications/Docker.sh Executable file
View File

@ -0,0 +1,15 @@
sudo apt-get update
sudo apt-get install \
apt-transport-https \
ca-certificates \
curl \
gnupg \
lsb-release -y
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg
echo \
"deb [arch=amd64 signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/ubuntu \
$(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
sudo apt-get update
sudo apt-get install docker-ce docker-ce-cli containerd.io docker-compose -y

View File

@ -1 +0,0 @@
apt-get update