写点什么

极客时间运维进阶训练营第一周作业

作者:曹张倪
  • 2022-10-23
    上海
  • 本文字数:764 字

    阅读完需:约 3 分钟

极客时间运维进阶训练营第一周作业

梳理各 Namespace 的作用

请参考下图:


使用 apt/yum/ 二进制安装指定版本的 Docker

# 基于ubuntu的官方apt安装方式,参考: https://docs.docker.com/engine/install/ubuntu/
# Uninstall old versionssudo apt-get remove docker docker-engine docker.io containerd runc
# Set up the repositorysudo apt-get updatesudo apt-get install \ ca-certificates \ curl \ gnupg \ lsb-release
# Add Docker’s official GPG keysudo mkdir -p /etc/apt/keyringscurl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /etc/apt/keyrings/docker.gpg
# Use the following command to set up the repositoryecho \ "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/ubuntu \ $(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null # Install a specific version using the version string from the second column, for example, 5:20.10.16~3-0~ubuntu-jammysudo apt-get update$ sudo apt-get install docker-ce=<VERSION_STRING> docker-ce-cli=<VERSION_STRING> containerd.io docker-compose-plugin
# Verify that Docker Engine is installed correctly by running the hello-world imagesudo service docker startsudo docker run hello-world
复制代码

熟练使用 Docker 数据卷

请参考下图:


熟练使用 Docker 的 bridge 和 container 模式网络

请参考下图:


其他:

这只是为了填充 infoq 字数;这只是为了填充 infoq 字数;这只是为了填充 infoq 字数;这只是为了填充 infoq 字数;这只是为了填充 infoq 字数;这只是为了填充 infoq 字数;这只是为了填充 infoq 字数;这只是为了填充 infoq 字数;

用户头像

曹张倪

关注

还未添加个人签名 2018-08-24 加入

还未添加个人简介

评论

发布
暂无评论
极客时间运维进阶训练营第一周作业_曹张倪_InfoQ写作社区