Podman 如何设置 docker registry mirror?

在使用 Docker 时,如果在中国大陆从 Docker Hub 下载 image 就会非常痛苦,于是很多人会选择设置一个 registry mirror:

vim /etc/docker/daemon.json

{
  "registry-mirrors": ["https://registry.docker-cn.com"]
}

然而,在尝试使用 podman 的过程中,我好像并没有发现哪里可以做类似的修改。不知道有没有朋友对这方面比较了解?

找到答案了:

3 Likes

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.