Files
Docker/README.md
2025-07-29 22:04:40 +08:00

15 lines
443 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Docker测试
1、查询网址 `https://docker.huajishe.fun/v2/_catalog`
2、从Docker向下pull的时候记得在/etc/docker/daemon.json中写一下insecure-website因为自建的网址需要HTTPS证书认证比较麻烦
获取的方式如下代码:
``` bash
docker pull huajishe.fun:8888/testing
```
如提示类似**Permission Denied**,则需要**Super User**身份
``` linux
sudo docker pull huajishe.fun:8888/testing
```