我是靠谱客的博主 活泼万宝路,最近开发中收集的这篇文章主要介绍2、docker安装与配置,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

Windows10
  • 下载地址
  • 系统要求:不支持windows 10家庭版操作系统。
  • 假装可以用于家庭版操作系统
  • 我就不安装了,还和我的unbantu冲突

macOS
  • 下载地址
  • 使用:没有 不安装

Linux(ubantu)

参考1
参考2
参考3

// 查看ubantu版本
cat /etc/issue
Ubuntu 20.04 LTS n l
// 安装依赖
root@moli-virtual-machine:/home/moli# apt-get -y install apt-transport-https ca-certificates curl software-properties-common
// 安装证书
curl -fsSL https://mirrors.ustc.edu.cn/docker-ce/linux/ubuntu/gpg | sudo apt-key add -
OK
// 添加源
add-apt-repository "deb [arch=amd64] https://mirrors.ustc.edu.cn/docker-ce/linux/ubuntu $(lsb_release -cs) stable"
// 下载docker
apt install docker
// apt -y install docker-ce
root@moli-virtual-machine:/home/moli# snap info docker
name:
docker
summary:
Docker container runtime
publisher: Canonical✓
store-url: https://snapcraft.io/docker
contact:
https://github.com/docker-snap/docker-snap/issues?q=
license:
Apache-2.0
description: |
Build and run container images with Docker.
This build requires all files that Docker uses, such as dockerfiles, to be in $HOME. Keep files
there for 'docker build', 'docker save' and 'docker load'.
This snap is built by Canonical based on source code published by Docker, Inc. It is not endorsed
or published by Docker, Inc.
Docker and the Docker logo are trademarks or registered trademarks of Docker, Inc. in the United
States and/or other countries. Docker, Inc. and other parties may also have trademark rights in
other terms used herein.
snap-id: sLCsFAO8PKM5Z0fAKNszUOX0YASjQfeZ
channels:
latest/stable:
19.03.11
2020-06-09 (471) 131MB -
latest/candidate: 19.03.11
2020-06-09 (471) 131MB -
latest/beta:
19.03.13
2020-10-16 (570) 133MB -
latest/edge:
19.03.13
2020-10-22 (586) 133MB -
17.03/stable:
17.03.2-ce-1 2017-07-20 (159)
42MB -
17.03/candidate:
17.03.2-ce-1 2017-06-30 (159)
42MB -
17.03/beta:
↑
17.03/edge:
17.03.2-ce-1 2017-06-30 (159)
42MB -
snap install docker

Linux(Centos)
  • 参考
  • 有问题重装
yum update
// 安装依赖:
yum install -y yum-utils device-mapper-persistent-data lvm2
// 添加源:
yum-config-manager --add-repo http://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo
// 安装:
yum -y install docker-ce
// 启动:
systemctl start docker
// 查看
docker ps
docker version
// 开机自启动
systemctl enable docker

镜像加速器(linux)
  • 获取镜像加速器地址(注册阿里云,进入容器镜像服务):https://cr.console.aliyun.com/cn-shanghai/new
  • 在/etc/docker下创建daemon.json文件,添加
    { "registry-mirrors": ["自己的加速器地址"] }
  • systemctl restart docker // 重启docker容器
  • docker pull nginx // 查看下载速度

Docker命令
  • 输入docker 直接查看docker命令

最后

以上就是活泼万宝路为你收集整理的2、docker安装与配置的全部内容,希望文章能够帮你解决2、docker安装与配置所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(55)

评论列表共有 0 条评论

立即
投稿
返回
顶部