Installing Docker on Pinebook Pro - update 1/18/20 - Printable Version +- PINE64 (https://forum.pine64.org) +-- Forum: Pinebook Pro (https://forum.pine64.org/forumdisplay.php?fid=111) +--- Forum: Pinebook Pro Tutorials (https://forum.pine64.org/forumdisplay.php?fid=117) +--- Thread: Installing Docker on Pinebook Pro - update 1/18/20 (/showthread.php?tid=8783) |
Installing Docker on Pinebook Pro - update 1/18/20 - SuperXkoodA - 01-15-2020 Follow directions on the official Docker site here and use the armhf set of instructions. This is confirmed to work for me on MrFixIt2001's build of Debian at this time. The remainder of this post was hastefully written by me on my first night owning my PBP. The excitement must have gotten the best of me and can be ignored. It may still be useful if someone decides to use a distro that is configured for aarch64 and thus not supported by docker in a packaged form at this time. I am changing the repo name from being specific for the pinebook to being more generic as I feel it is misleading as it stands. The steps taken in a nutshell are as follows
https://github.com/superxkooda/generic_docker_installer can do all the above steps for you. This was all done on the base Debian install that comes with the Pinebook. I do not see why it wouldn't work for other distributions as is or with some modification. Please let me know if there is anything that is unclear! RE: Installing Docker on Pinebook Pro - agD0i7rY - 01-15-2020 Under Ubuntu Docker(CE arm64) is in the depots. :) RE: Installing Docker on Pinebook Pro - SuperXkoodA - 01-15-2020 (01-15-2020, 04:47 AM)agD0i7rY Wrote: Under Ubuntu Docker(CE arm64) is in the depots. I know that arm64 is available however if you add the docker repo it can't find it. For example: Code: x@x:~$ grep -nr docker /etc/apt/sources.list Code: x@x:~$ uname -m While it can work I would not recommend adding an ubuntu repo to a debian system RE: Installing Docker on Pinebook Pro - SuperXkoodA - 01-17-2020 While the above instructions do work and will install the aarch64 version of docker, I have to admit I made a mistake. The crux of my problem is that while the arch of the system is aarch64, apt is setup to install armhf packages. this can be seen by running dpkg --print-architecture the output is armhf. This explains why trying to install Docker from the arm64 repos was not working and it was behaving as if the packages did not exist for me. In short an easy to install docker is to follow the official directions here for armhf Debian. I will update the original post to reflect this as my instructions on the default install are BAD instructions. RE: Installing Docker on Pinebook Pro - update 1/18/20 - chaoskampf - 03-24-2020 https://www.phoronix.com/scan.php?page=news_item&px=MTY5ODk |