![]() |
Has someone managed to get Docker running yet? - Printable Version +- PINE64 (https://forum.pine64.org) +-- Forum: ROCK64 (https://forum.pine64.org/forumdisplay.php?fid=85) +--- Forum: Linux on Rock64 (https://forum.pine64.org/forumdisplay.php?fid=88) +--- Thread: Has someone managed to get Docker running yet? (/showthread.php?tid=4889) Pages:
1
2
|
Has someone managed to get Docker running yet? - Sven - 08-10-2017 I tried to get Docker running, but it doesn't work as posix mqueue is not enabled in the kernel (using ayufan's Xenial minimal image). Before I start trying to solve that myself, which hopefully only involves compiling the kernel with mqueue configured, I wanted to ask if anyone else got Docker running or if someone knows if there is a reason why mqueue isn't enabled. RE: Has someone managed to get Docker running yet? - Usertastic - 09-01-2017 Running into this myself, and fortunately it is fixable by installing a newer kernel : https://forum.pine64.org/archive/index.php?thread-5043.html I can run docker with 4.13.0-rc1-rockchip-ayufan-96-gbacbee6 I did notice ssh problems over IPv4, but not over IPv6. Strange? Code: rock64@rock64:~$ sudo docker run -it --rm aarch64/hello-world RE: Has someone managed to get Docker running yet? - listenfree - 09-03-2017 good working! RE: Has someone managed to get Docker running yet? - ayufan - 09-04-2017 I'm pushing 0.5.7 that will enable needed kernel modules on 4.4. Due to performance and compatibility you should use 4.4 for now. RE: Has someone managed to get Docker running yet? - gas14 - 09-16-2017 hi what repo was used to install the docker I used the official docker repos but i'm not able to install docker-ce Code: root@rock64:~# uname -a RE: Has someone managed to get Docker running yet? - stuartiannaylor - 09-21-2017 (09-16-2017, 02:47 PM)gas14 Wrote: hi what repo was used to install the dockerhttps://docs.docker.com/engine/installation/linux/docker-ce/debian/#prerequisites Docker CE is supported on both x86_64 (or amd64) and armhf architectures for Jessie and Stretch. https://docs.docker.com/engine/installation/linux/docker-ce/ubuntu/#prerequisites Docker CE is supported on Ubuntu on x86_64, armhf, and s390x (IBM z Systems) architectures. Looks like its only armHF so you will have to install multiarch and specify armhf in the apt-get install Or just get the armhf image for rock64 xenial https://github.com/ayufan-rock64/linux-build/releases/download/0.5.9/xenial-minimal-rock64-0.5.9-104-armhf.img.xz RE: Has someone managed to get Docker running yet? - listenfree - 09-22-2017 https://github.com/yang-l/pine64-docker can help you maybe. RE: Has someone managed to get Docker running yet? - ayufan - 09-22-2017 Try running this script on xenial: armhf or arm64: https://get.docker.com/ RE: Has someone managed to get Docker running yet? - digitaldaz - 09-23-2017 Am I missing something here? For my kubernetes I just did: Code: apt-get install docker.io That just gives you the runtime though, maybe you need other stuff too. RE: Has someone managed to get Docker running yet? - stuartiannaylor - 09-23-2017 (09-23-2017, 04:10 AM)digitaldaz Wrote: Am I missing something here? For my kubernetes I just did: Nope difference is between the distro's repo's and dockers repo's. Raspbian has to use the convenience script Ayufan posted but it sets docker up as root. So yeah there are 3 ways like you did from the distro repo which is sometimes behind the current docker repo. Or follow these 2 depending on distro and use the more up to date docker repo. https://docs.docker.com/engine/installat...requisites Docker CE is supported on both x86_64 (or amd64) and armhf architectures for Jessie and Stretch. https://docs.docker.com/engine/installat...requisites Docker CE is supported on Ubuntu on x86_64, armhf, and s390x (IBM z Systems) architectures. Or the convenience script @ getdocker.com which is a must for raspbian. |