AEDEV Scripts

Your collection of useful command-line scripts.

🐧

Ubuntu/Debian

Docker with sudo

sudo apt update && sudo apt install curl -y && sudo apt install gpg -y && curl https://scripts.aedev.ca/install-docker.sh | sudo bash

Docker without sudo (as root)

apt update && apt install curl -y && apt install gpg -y && curl https://scripts.aedev.ca/install-docker.sh | bash