Skip to content

Instantly share code, notes, and snippets.

View alikon's full-sized avatar
🔬
researching

Nicola Galgano alikon

🔬
researching
View GitHub Profile
@alikon
alikon / docker-setup.sh
Created January 7, 2018 12:03 — forked from fredlahde/docker-setup.sh
Docker & Docker Compose Ubuntu 17.10
#!/bin/bash
# docker
sudo apt-get update
sudo 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 -
sudo apt-key fingerprint 0EBFCD88
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu zesty stable"