Installation steps of docker-ce on Raspberry Pi 4b ubuntu19 server

Installation steps of docker-ce on Raspberry Pi 4b ubuntu19 server

The Raspberry Pi model is 4b, 1G RAM.

The system is ubuntu19.10 server.

The download command is as follows:

wget "https://download.docker.com/linux/ubuntu/dists/disco/pool/stable/arm64/containerd.io_1.2.10-3_arm64.deb"
wget "https://download.docker.com/linux/ubuntu/dists/disco/pool/stable/arm64/docker-ce-cli_19.03.3~3-0~ubuntu-disco_arm64.deb"
wget https://download.docker.com/linux/ubuntu/dists/disco/pool/stable/arm64/docker-ce_19.03.3~3-0~ubuntu-disco_arm64.deb

The above command is mainly to download the above three installation packages

Then install the command as follows:

sudo dpkg -i "containerd.io_1.2.10-3_arm64.deb"
sudo dpkg -i "docker-ce-cli_19.03.3~3-0~ubuntu-disco_arm64.deb"
sudo dpkg -i "docker-ce_19.03.3~3-0~ubuntu-disco_arm64.deb"

Install the three installation packages just downloaded.

The interface for downloading the installation package is as follows. In fact, you can find the corresponding version of docker to download it yourself.

The installation is completed as follows. The installed docker version is 19.03.0, and hello-world is run successfully.

PS:

1. During the whole process, I did not set any mirror address, just download it directly.
2. It is possible to set up a GPG key. You can try not to set the GPG key first, and then directly download the installation package to try to install it.
3. The tutorial for setting the official GPG key is as follows:


Address: https://docs.docker.com/install/linux/docker-ce/ubuntu/

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • How to install Docker on Raspberry Pi
  • How to install Docker and configure Alibaba Cloud Image Accelerator
  • How to view files in Docker image
  • How to use Docker buildx to build multi-platform images and push them to private repositories
  • Use the docker build kit to build a Docker image that can be used on the Raspberry Pi

<<:  js+canvas realizes code rain effect

>>:  How to implement a password strength detector in react

Recommend

A universal nginx interface to implement reverse proxy configuration

1. What is a proxy server? Proxy server, when the...

Detailed explanation of JavaScript's Set data structure

Table of contents 1. What is Set 2. Set Construct...

jQuery plugin to implement minesweeper game (3)

This article shares the third article on how to u...

A brief discussion on the synchronization solution between MySQL and redis cache

Table of contents 1. Solution 1 (UDF) Demo Case 2...

How to import txt into mysql in Linux

Preface When I was writing a small project yester...

React realizes secondary linkage (left and right linkage)

This article shares the specific code of React to...

Detailed explanation of Angular data binding and its implementation

Table of contents Preface What is data binding? T...

Detailed tutorial on building a private Git server on Linux

1. Server setup The remote repository is actually...

Detailed explanation of several ways to export data in Mysql

There are many purposes for exporting MySQL data,...

How to define input type=file style

Why beautify the file control? Just imagine that a...

Vue Element front-end application development to obtain back-end data

Table of contents Overview 1. Acquisition and pro...

A brief discussion on the types of node.js middleware

Table of contents Overview 1. Application-level m...

OpenLayers realizes the method of aggregate display of point feature layers

Table of contents 1. Introduction 2. Aggregation ...

Creative opening effect achieved by combining CSS 3.0 with video

Let me share with you a creative opening realized...

How to set horizontal navigation structure in Html

This article shares with you two methods of setti...