博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Docker安装(ubuntu)
阅读量:4125 次
发布时间:2019-05-25

本文共 3902 字,大约阅读时间需要 13 分钟。

环境:Ubuntu 18.04.1 LTS (GNU/Linux 4.15.0-42-generic x86_64)

Install using the repository

Before you install Docker CE for the first time on a new host machine, you need to set up the Docker repository. Afterward, you can install and update Docker from the repository.

SET UP THE REPOSITORY

Update the apt package index:

$ sudo apt-get update

Install packages to allow apt to use a repository over HTTPS:

$ sudo apt-get install \    apt-transport-https \    ca-certificates \    curl \    software-properties-common

Add Docker’s official GPG key:

$ curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -

Verify that you now have the key with the fingerprint 9DC8 5822 9FC7 DD38 854A E2D8 8D81 803C 0EBF CD88, by searching for the last 8 characters of the fingerprint.

$ sudo apt-key fingerprint 0EBFCD88pub   4096R/0EBFCD88 2017-02-22      Key fingerprint = 9DC8 5822 9FC7 DD38 854A  E2D8 8D81 803C 0EBF CD88uid                  Docker Release (CE deb) 
sub 4096R/F273FCD8 2017-02-22

Use the following command to set up the stable repository. You always need the stable repository, even if you want to install builds from the edge or test repositories as well. To add the edge or test repository, add the word edge or test (or both) after the word stable in the commands below.

Note: The lsb_release -cs sub-command below returns the name of your Ubuntu distribution, such as xenial. Sometimes, in a distribution like Linux Mint, you might need to change $(lsb_release -cs) to your parent Ubuntu distribution. For example, if you are using Linux Mint Rafaela, you could use trusty.

x86_64

$ sudo add-apt-repository \   "deb [arch=amd64] https://download.docker.com/linux/ubuntu \   $(lsb_release -cs) \   stable"

Note: Starting with Docker 17.06, stable releases are also pushed to the edge and test repositories.

Learn about stable and edge channels.

INSTALL DOCKER CE

Update the apt package index.

$ sudo apt-get update

Install the latest version of Docker CE, or go to the next step to install a specific version:

$ sudo apt-get install docker-ce

Got multiple Docker repositories?

If you have multiple Docker repositories enabled, installing or updating without specifying a version in the apt-get install or apt-get update command always installs the highest possible version, which may not be appropriate for your stability needs.

To install a specific version of Docker CE, list the available versions in the repo, then select and install:

a. List the versions available in your repo:

$ apt-cache madison docker-cedocker-ce | 18.09.0~ce-0~ubuntu | https://download.docker.com/linux/ubuntu xenial/stable amd64 Packages

b. Install a specific version by its fully qualified package name, which is package name (docker-ce) “=” version string (2nd column), for example, docker-ce=18.03.0ce-0ubuntu.

$ sudo apt-get install docker-ce=

The Docker daemon starts automatically.

Verify that Docker CE is installed correctly by running the hello-world image.

$ sudo docker run hello-world

This command downloads a test image and runs it in a container. When the container runs, it prints an informational message and exits.

Docker CE is installed and running. The docker group is created but no users are added to it. You need to use sudo to run Docker commands. Continue to Linux postinstall to allow non-privileged users to run Docker commands and for other optional configuration steps.

UPGRADE DOCKER CE

To upgrade Docker CE, first run sudo apt-get update, then follow the installation instructions, choosing the new version you want to install.

Uninstall Docker CE

Uninstall the Docker CE package:

$ sudo apt-get purge docker-ce

Images, containers, volumes, or customized configuration files on your host are not automatically removed. To delete all images, containers, and volumes:

$ sudo rm -rf /var/lib/docker

You must delete any edited configuration files manually.


转载地址:http://kyhpi.baihongyu.com/

你可能感兴趣的文章
linux 勿删 libc.so.6 恢复操作
查看>>
QT moveToThread 实现多线程记录
查看>>
linux fg、bg的区别
查看>>
QT 获取可执行程序的路径
查看>>
QT QTextStream 读文件
查看>>
linux mysql安装 远程连接 字符集设置 读写速度问题 基础问题
查看>>
Java中关键字的使用
查看>>
面向对象的三大特征
查看>>
Java中的向下与向上转型
查看>>
== 和 equals() 区别
查看>>
基本类型、包装类与String类间的转换
查看>>
解决“cvShowImage”和“cv2”问题
查看>>
Ubuntu18.04安装labelme及使用
查看>>
Ubuntu18.04安装Docker
查看>>
解决“pip找不到命令“问题
查看>>
Ubuntu18.04安装FFMPEG及简单使用
查看>>
Ubuntu双击运行.sh文件
查看>>
解决“ValueError: not enough values to unpack (expected 3, got 2)”问题
查看>>
Ubuntu18.04安装Tensorflow(GPU)及Keras
查看>>
解决“AttributeError: module 'tensorflow' has no attribute 'Session'”问题
查看>>