1
0

Upload files to "/"

This commit is contained in:
Lee
2024-07-12 09:53:18 +00:00
commit 1a4f52235c
3 changed files with 102 additions and 0 deletions

11
install-docker.sh Normal file
View File

@ -0,0 +1,11 @@
#!/bin/bash
# Usage: curl -sSL https://s.fascinated.cc/s/install-docker | bash
# or use wget: wget -qO- https://s.fascinated.cc/s/install-docker | bash
# Get ready
apt update
apt upgrade -y
apt install curl -y
# Install Docker
curl -sSL https://get.docker.com/ | CHANNEL=stable bash