gpt4 book ai didi

docker - 为什么 "https://get.docker.com/ubuntu"是一个apt存储库?

转载 作者:行者123 更新时间:2023-12-02 06:45:21 25 4
gpt4 key购买 nike

今天我按照以下指示成功升级 docker: https://askubuntu.com/questions/472412/how-do-i-upgrade-docker

但是,当我打开存储库 url https://get.docker.com/ubuntu/ 时在我的浏览器中,它只是一个文本页面,其中包含 bash 命令列表。

我的问题是:

  • apt 如何处理此文本页面 URL?

  • apt 只是运行 bash 命令吗?

  • 如果是这样,为什么会有相同的命令:

echo deb https://get.docker.com/ubuntu docker main >/etc/apt/sources.list.d/docker.list

就像在 https://askubuntu.com/questions/472412/how-do-i-upgrade-docker

最佳答案

页面位于https://get.docker.com/ubuntu/包含一个可用于安装docker的脚本

# 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.com/ubuntu docker main > /etc/apt/sources.list.d/docker.list

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

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

但是这个脚本apt-get使用,它必须手动运行。

该脚本创建配置文件/etc/apt/sources.list.d/docker.list,内容如下:

deb https://get.docker.com/ubuntu docker main

apt-get update运行时,将使用此配置文件,并且apt-get update将采用该行并从中构建以下URL

https://get.docker.com/ubuntu/dists/docker/main/binary-amd64/Packages

包管理系统的包缓存将使用 Packages 文件中描述的包进行更新。

Package: lxc-docker
Version: 1.5.0
License: Apache-2.0
Vendor: none
Architecture: amd64
Maintainer: support@docker.com
Installed-Size: 0
Depends: lxc-docker-1.5.0
Homepage: http://www.docker.com/
Priority: extra
Section: default
Filename: pool/main/l/lxc-docker/lxc-docker_1.5.0_amd64.deb
Size: 2092
SHA256: 2e8b061216cc45343197e52082175bc671af298d530652436dc16d0397f986f0
SHA1: 24a0314bd7f6fdf79b69720de60be77510d689af
MD5sum: 923cad1a2af2d6b0a3e8fa909ba26ca4
Description: Linux container runtime Docker complements LXC with a high-level API which operates at the process level. It runs unix processes with strong guarantees of isolation and repeatability across servers. Docker is a great building block for automating distributed systems: large-scale web deployments, database clusters, continuous deployment systems, private PaaS, service-oriented architectures, etc.
....

最后apt-get update将下载并安装软件包。

关于docker - 为什么 "https://get.docker.com/ubuntu"是一个apt存储库?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28382660/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com