ubuntu安装dockers过程:

1. 先对系统进行更新

  1.1 apt-get upgrade

  1.2 去中国关于dockers的网站

   http://get.daocloud.io/

  1.3 安装docker

curl -sSL https://get.daocloud.io/docker | sh

  1.4 如果你的电脑没有安装curl,执行:sudo apt install curl

  1.5 若报错说

2 安装docker(ubuntu 16.04)

    

Prerequisites

To follow this tutorial, you will need the following:

Note: Docker requires a 64-bit version of Ubuntu as well as a kernel version equal to or greater than 3.10. The default 64-bit Ubuntu 16.04 server meets these requirements.

All the commands in this tutorial should be run as a non-root user. If root access is required for the command, it will be preceded by sudoInitial Setup Guide for Ubuntu 16.04 explains how to add users and give them sudo access.

Step 1 — Installing Docker

The Docker installation package available in the official Ubuntu 16.04 repository may not be the latest version. To get the latest and greatest version, install Docker from the official Docker repository. This section shows you how to do just that.

First, add the GPG key for the official Docker repository to the system:

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

Add the Docker repository to APT sources:

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

Next, update the package database with the Docker packages from the newly added repo:

  • sudo apt-get update

Make sure you are about to install from the Docker repo instead of the default Ubuntu 16.04 repo:

  • apt-cache policy docker-ce

You should see output similar to the follow:

Output of apt-cache policy docker-ce

docker-ce:
  Installed: (none)
  Candidate: 17.03.1~ce-0~ubuntu-xenial
  Version table:
     17.03.1~ce-0~ubuntu-xenial 500
        500 https://download.docker.com/linux/ubuntu xenial/stable amd64 Packages
     17.03.0~ce-0~ubuntu-xenial 500
        500 https://download.docker.com/linux/ubuntu xenial/stable amd64 Packages

Notice that docker-ce is not installed, but the candidate for installation is from the Docker repository for Ubuntu 16.04. The docker-ce version number might be different.

Finally, install Docker:

  • sudo apt-get install -y docker-ce
  • 注意:有可能运行因为docker是高版本出错
  • 因为使用docker-er比install docker.io下载的版本高,后者属于老版本安装

Docker should now be installed, the daemon started, and the process enabled to start on boot. Check that it‘s running:

  • sudo systemctl status docker

The output should be similar to the following, showing that the service is active and running:

Output

● docker.service - Docker Application Container Engine
   Loaded: loaded (/lib/systemd/system/docker.service; enabled; vendor preset: enabled)
   Active: active (running) since Sun 2016-05-01 06:53:52 CDT; 1 weeks 3 days ago
     Docs: https://docs.docker.com
 Main PID: 749 (docker)

Installing Docker now gives you not just the Docker service (daemon) but also the docker command line utility, or the Docker client. We‘ll explore how to use the docker command later in this tutorial.

3. 加速:

    http://guide.daocloud.io/dcs/docker-9153151.html

    https://www.daocloud.io/mirror#accelerator-doc

教程主要来源:https://www.digitalocean.com/community/tutorials/how-to-install-and-use-docker-on-ubuntu-16-04

        https://docs.docker.com/install/linux/docker-ce/ubuntu/#os-requirements

    

原文地址:https://www.cnblogs.com/guguobao/p/8877810.html

时间: 2024-10-12 00:33:54

ubuntu安装dockers过程:的相关文章

Ubuntu安装MyEclise16 过程差不多

选择好安装路径,和workpace路径,可能会因为工作空间放的位置不太对,导致myeclipse出现问题. 1.Ubuntu安装MyEclise10 不知道为什么网上会有那么多安装过程,还有配置目录和权限什么的,我安装只用了两个命令(首先要把安装文件最好放在Home目录下,并进入该目录). 1.给要安装的文件加权限: chmod 777 myeclipse-10.6-offline-installer-linux.run 2.执行安装命令:./myeclipse-10.6-offline-ins

ubuntu 安装vagrant过程

Ubuntu安装vagrant时需要首先安装virtualBox. Step1: 在https://www.virtualbox.org/wiki/Linux_Downloads 下载ubuntu对应版本的deb包. Step2: 在ubuntu终端中执行 sudo dpkg -i virtualbox-4.3_4.3.14-95030~Ubuntu~raring_amd64.deb 如果提示缺少依赖包,那么可以执行 sudo apt-get -f install .修复依赖关系,然后再次执行 

Ubuntu安装Mysql过程及远程问题解决

ubuntu下执行 sudo apt-get instlll mysql-server sudo apt-get install mysql-client 安装过程中会有文字界面设置密码 牢记密码 Mysql图形化工具绿色版 推荐 Mysql Workbench: https://yunpan.cn/cPSFXPvGEhh5v  访问密码 f31c Navicat for Mysql:(推荐) https://yunpan.cn/cPSFW83eSk9kU  访问密码 6317 本地连接 : m

Ubuntu安装Chrome过程中的细节

Ubuntu中的默认浏览器是Firefox,但是一直以来都认为Chrome更加优秀.下面记录一下在Ubuntu下安装Chrome的过程,也回顾一下Ubuntu系统中的一些细节. 大多数Linux安装软件的方式有这样几种: 1. 使用软件包管理器,在Ubuntu下就是apt(Ubuntu16.04后)或者apt-get命令,其他版本Linux也有自己的不同包管理器,如CentOS使用yum命令.使用软件包管理器需要连接网络,从网络仓库中下载安装,并能够自动处理依赖关系,这是首选方式.不过有些软件包

VMware Ubuntu安装详细过程

一.下载Ubuntu镜像文件 下载地址:http://www.ubuntu.com 打开上面的连接,我们来到如下页面,点击download: 下一步,到如下页面,点击Ubuntu Desktop: 然后选择Ubuntu 14.04.3 LTS release notes: 然后选择Ubuntu Desktop and Server: 接下来我们选择桌面版64-bit PC (AMD64) desktop,博主的电脑是64位的.另外desktop 和 server版的区别主要是:桌面版面向个人电脑

ubuntu安装 laravel 过程中出现: mcrypt php extension required 的问题 | 以及composer相关问题

首先安装 mcrypt sudo apt-get install mycrypt php5-mcrypt 然后 sudo php5enmod mcrypt 就可以打开模块,然后输入以下命令均可见到mcrypt了: php -i | grep mcrypt sudo php -m ........................................... 另外,关于如何让composer这个命令,在全局能够使用到 把composer.phar放入/usr/local/bin/中 然后改

VMware Tools (ubuntu系统)安装详细过程与使用

前一段时间博主在VMware虚拟机上安装了Ubuntu系统,如果还没有安装的同学可以参考博主上一篇文章:VMware Ubuntu安装详细过程. 猿友们都知道linux不太好用,如果你想将你主机Windows上的文件或安装包放到虚拟机上,VMware Tools是必不可少的工具. 欢迎关注,相互学习讨论,后续还会有更多linux搭建java开发环境和框架相关博客. 下面小宝鸽附上VMware Tools安装的详细流程. 1.打开虚拟机VMware Workstation,启动Ubuntu系统,菜

Ubuntu安装google chrome过程

Ubuntu安装google chrome过程: 1 # wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb 2 3 # apt-get -f install 4 5 # dpkg -i google-chrome-stable_current_amd64.deb GoAgent Import CA, ubuntu手动导入证书 如果自动导入存在问题,针对Chrome浏览器可以采用手动导入的方

Ubuntu 安装Redis

在Ubuntu中安装Redis有两种方式, 我用的是Ubuntu自带的apt-get 什么的是apt-get: 高级包装工具(英语:Advanced Packaging Tools,简称:APT)是Debian及其衍生发行版(如:ubuntu)的软件包管理器. APT可以自动下载,配置,安装二进制或者源代码格式的软 件包,因此简化了 Unix系统上管理软件的过程,apt-get命令一般需要root权限执行,所以一般跟着sudo命令. 在 Ubuntu 系统安装 Redi 可以使用以下命令: $s