Difference between revisions of "Template:RK3399-Linux-Install-Docker"
From FriendlyELEC WiKi
(updated by API) |
(updated by API) |
||
Line 13: | Line 13: | ||
Test that your installation works by running the simple docker image: | Test that your installation works by running the simple docker image: | ||
<syntaxhighlight lang="bash"> | <syntaxhighlight lang="bash"> | ||
− | git clone https://github.com/friendlyarm/debian-jessie- | + | git clone https://github.com/friendlyarm/debian-jessie-arm-docker |
− | cd debian-jessie- | + | cd debian-jessie-arm-docker |
./rebuild-image.sh | ./rebuild-image.sh | ||
./run.sh | ./run.sh | ||
</syntaxhighlight> | </syntaxhighlight> |
Revision as of 08:02, 30 March 2019
1 How to install and use docker
1.1 How to Install Docker
Run the following commands:
wget https://download.docker.com/linux/ubuntu/dists/bionic/pool/stable/arm64/containerd.io_1.2.4-1_arm64.deb wget https://download.docker.com/linux/ubuntu/dists/bionic/pool/stable/arm64/docker-ce-cli_18.09.3~3-0~ubuntu-bionic_arm64.deb wget https://download.docker.com/linux/ubuntu/dists/bionic/pool/stable/arm64/docker-ce_18.09.3~3-0~ubuntu-bionic_arm64.deb sudo dpkg -i containerd.io_1.2.4-1_arm64.deb sudo dpkg -i docker-ce-cli_18.09.3~3-0~ubuntu-bionic_arm64.deb sudo dpkg -i docker-ce_18.09.3~3-0~ubuntu-bionic_arm64.deb
1.2 Test Docker installation
Test that your installation works by running the simple docker image:
git clone https://github.com/friendlyarm/debian-jessie-arm-docker cd debian-jessie-arm-docker ./rebuild-image.sh ./run.sh