Compare commits

...

2 Commits

Author SHA1 Message Date
9898475746 Created discord install 2021-09-25 22:42:07 +02:00
8579114cd0 Finished Docker install 2021-09-25 22:31:03 +02:00
5 changed files with 20 additions and 7 deletions

View File

@ -6,8 +6,8 @@ Installify is a Bash shell script to download new software and applications.
* Bootstrap Studio
* Chromium (TO-DO)
* Defold (TO-DO)
* Discord (TO-DO)
* Docker (TO-DO)
* Discord
* 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

View File

@ -0,0 +1,2 @@
sudo -u $SUDO_USER wget -O discord.deb "https://discordapp.com/api/download?platform=linux&format=deb"
sudo dpkg -i discord.deb

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,3 +0,0 @@
wget -O discord.deb "https://discordapp.com/api/download?platform=linux&format=deb"
sudo dpkg -i discord.deb
echo "y" | sudo apt install -f

View File

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