Skip to content

Instantly share code, notes, and snippets.

View Lzmog's full-sized avatar
🚀
Learn to build it, then break it

Lukas Zmoginas Lzmog

🚀
Learn to build it, then break it
View GitHub Profile
@Lzmog
Lzmog / docker-install-lubuntu-17.04.sh
Created September 19, 2018 20:01 — forked from pjmazenot/docker-install-lubuntu-17.04.sh
Install Docker CE on Lubuntu 17.04
#!/bin/sh
# Install Docker CE on Lubuntu 17.04
# Run this script with sudo privileges `sudo docker-install-lubuntu-17.04.sh`
apt-get install -y apt-transport-https ca-certificates curl software-properties-common
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu zesty stable"
apt-get update
apt-get install -y docker-ce