1
0
linux-scripts/install-docker.sh

11 lines
284 B
Bash
Raw Normal View History

2024-07-12 09:53:18 +00:00
#!/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