Files
oam/scripts/raspberry pi os/docker.install.bash
2022-03-04 00:25:37 +01:00

11 lines
217 B
Bash
Executable File

#!/usr/bin/env bash
set -e
sudo curl -fsSL https://get.docker.com | sh -
sudo usermod -aG docker ${USER}
# logout && login to apply the new status
docker run --rm --name test hello-world && docker rmi hello-world