Skip to content

Instantly share code, notes, and snippets.

@ahdinosaur
Last active August 29, 2015 13:57
Show Gist options
  • Save ahdinosaur/9637714 to your computer and use it in GitHub Desktop.
Save ahdinosaur/9637714 to your computer and use it in GitHub Desktop.
how to install docker 0.9.0 on Debian testing / sid
# install docker from Debian repos
sudo aptitude install docker.io
# add your user to the docker group
sudo adduser <user> docker
# alias docker.io to docker
sudo ln "$(which docker.io)" "$(dirname $(which docker.io))/docker"
# log out and log back in
# PROFIT!
docker run -i -t debian /bin/bash
@marktyers
Copy link

Is there a way to install docker.io on a Raspberry Pi (ARM)?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment