Skip to content

Instantly share code, notes, and snippets.

@wh13371
Created September 9, 2019 10:33
Show Gist options
  • Save wh13371/8fb904ee617c4dcfa356357c426e1354 to your computer and use it in GitHub Desktop.
Save wh13371/8fb904ee617c4dcfa356357c426e1354 to your computer and use it in GitHub Desktop.
install Docker on CentOS 7
#!/bin/bash
###############################################################################
# docker
###############################################################################
curl -kfsSL https://get.docker.com/ | sh
systemctl start docker
usermod -aG docker fizz
docker version
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment