10-16-2018, 05:52 AM
(02-24-2018, 08:02 AM)blu-raspberry Wrote:(02-21-2018, 07:59 AM)Luke Wrote: Unless you're doing it for educational purposes / have a mind-set to make it work yourself, then you can skip the trouble and just use the (64bit) Xenial container image by ayufan, which includes Docker CE, Compose and Kubernates. NB: this is a pre-release image, so some things may not work.
Read more on his git.
+1. Thanks for the link! This could become my go-to image as I’m learning docker.
I know it's been a long time... but posting here as it might be useful to others. You add-repository step should be replaced by this:
Code:
$ echo "deb [arch=arm64] https://download.docker.com/linux/ubuntu \
$(lsb_release -cs) stable" | \
sudo tee /etc/apt/sources.list.d/docker.list
The important part is the architecture, it should be arch=arm64. You were using amd64 before. That's the only thing I remember having to change from the official install documentation at: https://docs.docker.com/install/linux/docker-ce/ubuntu/