init
This commit is contained in:
22
scripts/01_install_bin.sh
Executable file
22
scripts/01_install_bin.sh
Executable file
@@ -0,0 +1,22 @@
|
||||
|
||||
apt -y upgrade
|
||||
|
||||
# BUN
|
||||
apt install -y zip
|
||||
curl -fsSL https://bun.sh/install | bash
|
||||
source /root/.bashrc
|
||||
|
||||
#PODMAN
|
||||
apt install -y podman
|
||||
|
||||
|
||||
#CADDY
|
||||
sudo apt install -y debian-keyring debian-archive-keyring apt-transport-https curl
|
||||
curl -1sLf 'https://dl.cloudsmith.io/public/caddy/stable/gpg.key' | sudo gpg --dearmor -o /usr/share/keyrings/caddy-stable-archive-keyring.gpg
|
||||
curl -1sLf 'https://dl.cloudsmith.io/public/caddy/stable/debian.deb.txt' | sudo tee /etc/apt/sources.list.d/caddy-stable.list
|
||||
chmod o+r /usr/share/keyrings/caddy-stable-archive-keyring.gpg
|
||||
chmod o+r /etc/apt/sources.list.d/caddy-stable.list
|
||||
sudo apt update
|
||||
sudo apt install caddy
|
||||
|
||||
|
Reference in New Issue
Block a user