From 9bc54d16e756cf059a2764e619e6bac9e40a6c16 Mon Sep 17 00:00:00 2001 From: Werner Date: Tue, 14 Feb 2023 17:49:20 -0300 Subject: [PATCH] Create Portainer.sh --- Scripts/Portainer.sh | 86 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 86 insertions(+) create mode 100644 Scripts/Portainer.sh diff --git a/Scripts/Portainer.sh b/Scripts/Portainer.sh new file mode 100644 index 0000000..f10949a --- /dev/null +++ b/Scripts/Portainer.sh @@ -0,0 +1,86 @@ +#!/usr/bin/env sh + +export DEBIAN_FRONTEND=noninteractive + +# Update + +sudo apt update && sudo apt upgrade -y + +# Dependencies + +sudo apt install -y --no-install-recommends \ + bash \ + ca-certificates \ + curl \ + git \ + gnupg \ + gzip \ + htop \ + iputils-ping \ + lsb-release \ + nano \ + neofetch \ + nginx \ + python3 \ + samba \ + tar \ + ufw \ + unzip \ + wget \ + xz-utils \ + zsh + +# Tools + +git clone https://github.com/asdf-vm/asdf ~/.asdf + +# Docker + +sudo mkdir -p /etc/apt/keyrings +curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /etc/apt/keyrings/docker.gpg +echo \ + "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/ubuntu \ + $(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null +sudo apt update +sudo apt install docker-ce docker-ce-cli containerd.io docker-compose-plugin +sudo usermod -aG docker $USER +newgrp docker +docker version + +# Git + +cp ./Config/.gitconfig ~/.gitconfig + +# SSH + +mkdir ~/.ssh +cp ./Config/.ssh/config ~/.ssh/config + +# ZSH + +cp ./Config/.zshrc ~/.zshrc + +# Shell + +mkdir ~/.config +cp ./Config/starship.toml ~/.config/starship.toml +git clone https://github.com/zsh-users/zsh-autosuggestions ~/.zsh/zsh-autosuggestions +source ~/.zsh/zsh-autosuggestions/zsh-autosuggestions.zsh +curl -sS https://starship.rs/install.sh | sh +chsh -s $(which zsh) + +# Firewall + +sudo ufw allow 5000 +sudo ufw allow 7000 +sudo ufw allow 8000 +sudo ufw allow 9443 + +sudo ufw allow "Nginx Full" +sudo ufw allow "OpenSSH" +sudo ufw allow "Samba" + +# Reboot + +sudo ufw enable +sudo reboot now