Skip to content

Instantly share code, notes, and snippets.

@pamtrak06
Last active December 16, 2017 11:20
Show Gist options
  • Save pamtrak06/0ba17fe5ef24ed760dd5525ba6ed1429 to your computer and use it in GitHub Desktop.
Save pamtrak06/0ba17fe5ef24ed760dd5525ba6ed1429 to your computer and use it in GitHub Desktop.
raspbian : docker, docker-compose and docker-machine installation
# docker installation
curl -sSL get.docker.com | sh
# docker-compose installation
pip install docker-compose
# fix issue "memory cgroup not supported"
# https://github.com/moby/moby/issues/35587
# replace/adding "cgroup_enable=memory cgroup_memory=1" in /boot/cmdline.txt & reboot
# docker-machine installation
curl -L https://github.com/docker/machine/releases/download/v0.13.0/docker-machine-Linux-armhf>/usr/local/bin/docker-machine && \
chmod +x /usr/local/bin/docker-machine
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment