Create Portainer.sh

This commit is contained in:
Werner
2023-02-14 17:49:20 -03:00
parent ba6a5c5fc3
commit 9bc54d16e7

86
Scripts/Portainer.sh Normal file
View File

@ -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