Skip to content

Instantly share code, notes, and snippets.

@oeeckhoutte
Last active August 29, 2015 14:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save oeeckhoutte/5c3e1d433b5309ea5796 to your computer and use it in GitHub Desktop.
Save oeeckhoutte/5c3e1d433b5309ea5796 to your computer and use it in GitHub Desktop.
Installer Docker sur une machine Debian 8.1
# Installation sur Debian 8.1:
apt-get update
apt-get install -y curl
curl -sSL https://get.docker.com/ | sh
# Tester si l’installation fonctionne:
docker run -i -t ubuntu /bin/bash
# Vérifier qu’on est bien sur une machine Ubuntu
cat /etc/issue
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment