Ubuntu 16.04 安裝Docker

  1. 前置安裝

    1. 確保你的系統是64位

      $ sudo apt-get install     apt-transport-https     ca-certificates     curl     software-properties-common  
      
  2. 添加Docker官方GPG key

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

      验证key

      $ sudo apt-key fingerprint 0EBFCD88
      

      确保key fingerprint是 :9DC8 5822 9FC7 DD38 854A E2D8 8D81 803C 0EBF CD88

  3. 安装仓库

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

    1. $ sudo apt-get update
      $ sudo apt-get install docker-ce
  5. 测试Doker

    1. $ sudo docker run hello-world
      

      看到如下输出则表示安装成功:

    2. Unable to find image ‘hello-world:latest‘ locally
      latest: Pulling from library/hello-world
      78445dd45222: Pull complete
      Digest: sha256:c5515758d4c5e1e838e9cd307f6c6a0d620b5e07e6f927b07d05f6d12a1ac8d7
      Status: Downloaded newer image for hello-world:latest

      Hello from Docker!
      This message shows that your installation appears to be working correctly.

      To generate this message, Docker took the following steps:
       1. The Docker client contacted the Docker daemon.
       2. The Docker daemon pulled the "hello-world" image from the Docker Hub.
       3. The Docker daemon created a new container from that image which runs the
          executable that produces the output you are currently reading.
       4. The Docker daemon streamed that output to the Docker client, which sent it
          to your terminal.

      To try something more ambitious, you can run an Ubuntu container with:
       $ docker run -it ubuntu bash

      Share images, automate workflows, and more with a free Docker ID:
       https://cloud.docker.com/

      For more examples and ideas, visit:
       https://docs.docker.com/engine/userguide/

PS:本文适用amd64位的ubuntu系统

时间: 2024-10-05 13:49:51

Ubuntu 16.04 安裝Docker的相关文章

Ubuntu 14.04 安裝HP打印機

描述:Ubuntu 系統添加 HP 打印機,添加成功後無法打印,報 hplip-plugin 錯誤 解決方案: 網絡上搜索了下,說是因爲Ubuntu不包含新款打印機驅動的原因,需要下載安裝對應驅動.又搜索了下 hplip-plugin 這個有專門提供的,但無法單獨安裝,需要安裝 hplip .在網站http://hplipopensource.com/hplip-web/downloads.html  下載 hplip 安裝 注意:hplip.hplip-plugin版本要相同 參照 hplip

在CentOS 7 和ubuntu 16.04 下安装Docker

----------CentOS 7--------------------- sudo adduser --system --no-create-home --user-group -s /sbin/nologin docker sudo yum -y update sudo cat >> /etc/yum.repos.d/docker.repo <<-'EOF' [dockerrepo] name=Docker Repository baseurl=https://yum.do

Ubuntu 16.04下使用docker部署ceph集群

ceph集群docker部署 通过docker可以快速部署小规模Ceph集群的流程,可用于开发测试. 以下的安装流程是通过linux shell来执行的:假设你只有一台机器,装了linux(如Ubuntu)系统和docker环境,那么可以参考以下步骤安装Ceph: # 要用root用户创建, 或有sudo权限 # 注: 建议使用这个docker镜像源:https://registry.docker-cn.com # 1. 修改docker镜像源 cat > /etc/docker/daemon.

Ubuntu 16.04 LTS安装Docker最新版

一.安装Docker的先决条件 1.运行64位CPU构架的计算机(目前只能是x86_64和amd64),请注意,Docker目前不支持32位CPU.2.运行Linux 3.8或更高版本内核.一些老版本的2.6.x或其后的内核也能够运行Docker,但运行结果会有很大的不同.而且,如果你需要就老版本内核寻求帮助时,通常大家会建议你升级到更高版本的内核.3.内核必须支持一种适合的存储驱动(storage driver),例如:Device Manage:AUFS:vfs:btrfs:ZFS默认存储驱

ubuntu 16.04安装docker

环境 操作系统:ubuntu 16.04 64位,默认安装 准备 1. 添加GPG key: $ sudo apt-key adv --keyserver hkp://p80.pool.sks-keyservers.net:80 --recv-keys 58118E89F3A912897C070ADBF76221572C52609D 2. 添加源 新建文件:/etc/apt/sources.list.d/docker.list,在里面添加内容: deb https://apt.dockerpro

ubuntu 16.04利用docker搭建java+tomcat+nginx反向代理/动静分离

ubuntu 16.04利用docker搭建java+tomcat+nginx反向代理 新建两个docker容器 docker run -it --name Tomcat-mysql -v /mnt:/mnt -p 8866:80 -p 33006:3306 ubuntu /bin/bash docker run -itd --name webserver -p 8888:80 -v /mnt/:/mnt/ ubuntu /bin/bash [email protected]:~# docker

Ubuntu 16.04 安装 Docker

Ubuntu 16.04 安装 docker 是一件很麻烦的事情,但鉴于 docker 的各种优点,还是忍了.参考docker官网. 1.选择国内的云服务商,这里选择阿里云为例 curl -sSL http://acs-public-mirror.oss-cn-hangzhou.aliyuncs.com/docker-engine/internet | sh - 2.安装所需要的包 sudo apt-get install linux-image-extra-$(uname -r) linux-

Ubuntu 16.04 服务器上配置使用 docker

Docker基础概念 在使用Docker之前,我们先了解下几个Docker的核心概念 Docker Daemon Docker引擎,就是运行在后台的一个守护进程,在我们启动它之后,我们就可以通过Docker客户端发送相关Docker的命令. Docker Images Docker镜像,这个就类似于我们在安装Windows时的镜像,只不过windows的镜像,在以前我们通常存在光盘上或者U盘里,这里的镜像我们通常会发布到Docker Registry Docker Containers Dock

Ubuntu 16.04安装docker(2018年最新)

参考https://blog.csdn.net/bingzhongdehuoyan/article/details/79411479 http://www.cnblogs.com/lighten/p/6034984.html https://blog.csdn.net/world_snow/article/details/79625341 本文开发环境为Ubuntu 16.04 LTS 64位系统 1.docker支持以下Ubuntu操作系统: Ubuntu Xenial 16.04[LTS]