12 lines
173 B
Bash
Executable File
12 lines
173 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# https://docs.docker.com/engine/install/linux-postinstall/
|
|
|
|
set -x
|
|
|
|
sudo groupadd docker
|
|
sudo usermod -aG docker $USER
|
|
#newgrp docker
|
|
#docker run hello-world
|
|
|