Last active
December 16, 2017 11:20
-
-
Save pamtrak06/0ba17fe5ef24ed760dd5525ba6ed1429 to your computer and use it in GitHub Desktop.
raspbian : docker, docker-compose and docker-machine installation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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