当前位置: 代码迷 >> PB >> Docker(四)Docker on Raspberry
  详细解决方案

Docker(四)Docker on Raspberry

热度:642   发布时间:2016-04-29 05:14:26.0
Docker(4)Docker on Raspberry
Docker(4)Docker on Raspberry

Install the docker on raspberry.
> curl https://raw.githubusercontent.com/resin-io/docker-install-script/master/install.sh | sh

Error Message:
sh: 6: pacman: not found

Solution:
> sudo apt-get install pacman

Still not working, use this command to install docker instead.
> sudo apt-get install docker

It is not the right package. Try this way.
> wget -qO- https://get.docker.com/ | sh
Error: you are not using a 64bit platform.
Docker currently only supports 64bit platforms.

It seems that I can not directly easily install docker on my raspberry if I did not install my arm linux system.
[email protected] ~/install $ uname -s
Linux
[email protected] ~/install $ uname -m
armv6l


References:
docker on raspberry
https://resin.io/blog/docker-on-raspberry-pi-in-4-simple-steps/
http://blog.xebia.com/2014/08/25/docker-on-a-raspberry-pi/

https://github.com/resin-io/lxc-docker-PKGBUILD

  相关解决方案