23 lines
652 B
Bash
Executable File
23 lines
652 B
Bash
Executable File
|
|
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
|
|
|
|
|