This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# install-docker.sh | |
# One-liner installer for Docker CE (Ubuntu/Debian) | |
# Usage: | |
# curl -fsSL https://raw.githubusercontent.com/your/gist/main/install-docker.sh -o install-docker.sh | |
# sudo bash install-docker.sh | |
# Options: | |
# --no-hello Skip running hello-world after install | |
set -euo pipefail |