ubuntu安装docker

14.04安装docker方法一:

$ sudo apt-get update
$ sudo apt-get install docker.io
$ sudo ln -sf /usr/bin/docker.io /usr/local/bin/docker
$ sudo sed -i ‘$acomplete -F _docker docker‘ /etc/bash_completion.d/docker.io
$ sudo apt-get install apt-transport-https
$ sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 36A1D7869245C8950F966E92D8576A8BA88D21E9
$ sudo sh -c "echo deb https://get.docker.io/ubuntu docker main  > /etc/apt/sources.list.d/docker.list"$ sudo apt-get update
$ sudo apt-get install lxc-docker

14.04安装docker方法二:

$ curl -sSL https://get.docker.io/ubuntu/ | sudo sh

#查看[email protected]:~$ sudo apt-get install vim
Reading package lists... Done
Building dependency tree       
Reading state information... Done
vim is already the newest version.
0 upgraded, 0 newly installed, 0 to remove and 32 not upgraded.
[email protected]:~$ vi ./index.html 
# Check that HTTPS transport is available to APT
if [ ! -e /usr/lib/apt/methods/https ]; then
        apt-get update
        apt-get install -y apt-transport-https
fi

# Add the repository to your APT sources
echo deb https://get.docker.io/ubuntu docker main > /etc/apt/sources.list.d/docker.lis
t

# Then import the repository key
apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 36A1D7869245C8950F96
6E92D8576A8BA88D21E9

# Install docker
apt-get update
apt-get install -y lxc-docker

#
# Alternatively, just use the curl-able install.sh script provided at https://get.dock
er.io
#
~                                                                                     
"./index.html" 19L, 584C                                            1,1           All
# Check that HTTPS transport is available to APT
if [ ! -e /usr/lib/apt/methods/https ]; then
        apt-get update
        apt-get install -y apt-transport-https
fi

# Add the repository to your APT sources
echo deb https://get.docker.io/ubuntu docker main > /etc/apt/sources.list.d/docker.lis
t

# Then import the repository key
apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 36A1D7869245C8950F96
6E92D8576A8BA88D21E9

# Install docker
apt-get update
apt-get install -y lxc-docker

#
# Alternatively, just use the curl-able install.sh script provided at https://get.dock
er.io
#
~
时间: 2024-12-21 02:16:40

ubuntu安装docker的相关文章

【1】ubuntu 安装docker

官方支持安装docker的Ubuntu版本: ubuntu trusty 14.04(LTS) (64位) ubuntu precise 12.04(LTS) (64位) ubuntu raring 16.04(64位) ubuntu saucy 13.10(64位) 1.检查ubuntu版本号是否满足: 2.检查device mapper:   作为docker的存储驱动 或者在/proc/devices文件中检查是否有device-mapper条目: 3.检查是否安装了curl包:which

1 ubuntu安装docker

Ubuntu Ubuntu 14.04及以上版本 Ubuntu14.04版本官方软件源中已经自带了Docker包,可以直接安装:$ sudo apt-get update $ sudo apt-get install -y docker.io$ sudo ln -sf /usr/bin/docker.io /usr/local/bin/docker$ sudo sed -i '$acomplete -F _docker docker' /etc/bash_completion.d/docker.

Ubuntu安装Docker(官方文档翻译)

翻译自Docker官方文档 https://docs.docker.com/engine/installation/linux/ubuntulinux/ 之前因为看不懂官方文档,卡在某个步骤无法完成安装.翻译一下安装部分,给自己也希望能给一些同学做参考. 我的英语水平很菜,不足之处请各位斧正. 国内从docker官方下载文件会很慢,耐心等待,有时还会连不上,重试可能会成功. Ubuntu Docker 在支持这些Ubuntu操作系统: · Ubuntu Xenial 16.04 (LTS) · 

Ubuntu 安装 Docker

在Ubuntu中安装Docker Docker 目前支持以下 Ubuntu 系统: Ubuntu Xenial 16.04 (LTS) Ubuntu Wily 15.10 Ubuntu Trusty 14.04 (LTS) Ubuntu Precise 12.04 (LTS) 复杂操作 检查内核版本 Docker要求是64位Ubuntu(无论哪个版本).另外,内核必须在最小为3.10.3.10最新版本或更新的版本也行.原因是3.10之前版本缺少docker运行所需要的特征一些容器.这些老版本的b

Ubuntu 安装docker

本次操作仅限于 Ubuntu14.04 LTS 查看内核版本:  dpkg -l|grep linux-image linux-image-extra-3.13.0-32-generic 3.13.0-32.57     amd64        Linux kernel extra modules for version 3.13.0 on 64 bit x86 SMP linux-image-extra-3.13.0-83-generic 3.13.0-83.127    amd64    

Ubuntu 安装 docker,并上传到dockerhub

一.安装Docker apt-get -y install docker.io 链接: ln -sf /usr/bin/docker.io /usr/local/bin/docker 检查docker服务: service docker status 二.上传镜像到dockerhub (1).dockerhub上注册账号 https://hub.docker.com/ (2).登录命令 docker login 输入用户名密码 登录的认证信息存放在.dockercfg,可以查看 gedit .d

ubuntu安装Docker容器

第一步首先更新资源: apt-get update 第二步安装Docker: apt-get install docker 第三步安装docker.io: apt-get install docker.io 第四步安装docker-registry: apt-get install docker-registry 第五步启动docker容器: systemctl start docker 最后验证docker容器是否安装成功: docker run hello-world 原文地址:https:

Docker容器管理--ubuntu安装docker

Ubuntu14.06/16.04 安装证书 sudo apt-get install \apt-transport-https \a-certificates \curl \software-properties-common 添加Docker源的KEY curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - 添加Docker软件包源 sudo add-apt-repository \"deb [

Ubuntu安装docker ee 遇到问题找不到安装源 disco Release

仓库 “https://storebits.docker.com/ee/ubuntu/*********/ubuntu disco Release” 没有 Release 文件. 我打开网址,发现没有 disco 这个东西 虽让我不知道是什么 解决方法: sudo add-apt-repository "deb [arch=$(dpkg --print-architecture)] $DOCKER_EE_URL/ubuntu \ xenial \ stable-$DOCKER_EE_VERSIO