PINE64
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


RE: Has someone managed to get Docker running yet? - ayufan - 09-24-2017

The docker repo's have the latest and greatest docker-ce (17.05/06) where docker.io is old version (1.12).


RE: Has someone managed to get Docker running yet? - douglasmiranda - 11-03-2017

Sharing my experiences with Docker on Pine/Rock64

https://forum.pine64.org/showthread.php?tid=5341


RE: Has someone managed to get Docker running yet? - xnathanh - 12-22-2017

(09-16-2017, 02:47 PM)gas14 Wrote: 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
Linux rock64 4.4.77-rockchip-ayufan-104 #1 SMP Sun Sep 10 21:24:43 UTC 2017 aarch64 aarch64 aarch64 GNU/Linux
root@rock64:~# apt-get install docker-ce
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package docker-ce
i got same issue with stretch-minimal-rock64-0.6.5-152-arm64.img.xz did you fixed?


RE: Has someone managed to get Docker running yet? - digitaldaz - 12-22-2017

Code:
apt-get update
apt-get install -y \
   apt-transport-https \
   ca-certificates \
   curl \
   software-properties-common
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | apt-key add -
add-apt-repository \
  "deb https://download.docker.com/linux/$(. /etc/os-release; echo "$ID") \
  $(lsb_release -cs) \
  stable"



RE: Has someone managed to get Docker running yet? - xnathanh - 12-22-2017

(12-22-2017, 03:09 PM)digitaldaz Wrote:
Code:
apt-get update
apt-get install -y \
   apt-transport-https \
   ca-certificates \
   curl \
   software-properties-common
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | apt-key add -
add-apt-repository \
  "deb https://download.docker.com/linux/$(. /etc/os-release; echo "$ID") \
  $(lsb_release -cs) \
  stable"

same...

Code:
root@rock64:~# curl -fsSL https://download.docker.com/linux/ubuntu/gpg | apt-key add -
OK
root@rock64:~# add-apt-repository \
>   "deb https://download.docker.com/linux/$(. /etc/os-release; echo "$ID") \
>   $(lsb_release -cs) \
>   stable"
root@rock64:~# apt-get install docker-ce
Reading package lists... Done
Building dependency tree       
Reading state information... Done
W: Target Packages (stable/binary-all/Packages) is configured multiple times in /etc/apt/sources.list:10 and /etc/apt/sources.list:13
W: Target Translations (stable/i18n/Translation-en) is configured multiple times in /etc/apt/sources.list:10 and /etc/apt/sources.list:13
W: Target Packages (stable/binary-amd64/Packages) is configured multiple times in /etc/apt/sources.list:10 and /etc/apt/sources.list.d/docker.list:1
W: Target Packages (stable/binary-all/Packages) is configured multiple times in /etc/apt/sources.list:10 and /etc/apt/sources.list.d/docker.list:1
W: Target Translations (stable/i18n/Translation-en) is configured multiple times in /etc/apt/sources.list:10 and /etc/apt/sources.list.d/docker.list:1
E: Unable to locate package docker-ce



RE: Has someone managed to get Docker running yet? - digitaldaz - 12-22-2017

Sorry, did you do apt-get update after adding the repo?


RE: Has someone managed to get Docker running yet? - xnathanh - 12-22-2017

(12-22-2017, 04:15 PM)digitaldaz Wrote: Sorry, did you do apt-get update after adding the repo?

yes,i did,is same. this issue block me 2 days ago....


RE: Has someone managed to get Docker running yet? - xnathanh - 12-24-2017

new update:docker now working on xenial-mate-rock64-0.6.5-152-arm64.img.xz

mkdir /home/rock64/download

wget https://download.docker.com/linux/ubuntu/dists/xenial/pool/stable/arm64/docker-ce_17.09.1~ce-0~ubuntu_arm64.deb

sudo dpkg -i docker-ce_17.09.1~ce-0~ubuntu_arm64.deb

that's all.