mirror of
https://gitea.com/mcereda/oam.git
synced 2026-02-09 05:44:23 +00:00
11 lines
227 B
Bash
Executable File
11 lines
227 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'
|