Skip to content

Instantly share code, notes, and snippets.

View dsncode's full-sized avatar

Daniel dsncode

View GitHub Profile
@dsncode
dsncode / docker_install.sh
Last active May 13, 2019 10:24
install docker in ubuntu in one command
#!/bin/bash
# INSTALL DOCKER IN UBUNTU IN ONE SCRIPT
# IT REQUIRES SUDO PERMITS
sudo apt-get remove docker docker-engine docker.io containerd runc
sudo apt-get update
sudo apt-get install -y \
apt-transport-https \
ca-certificates \