Questions tagged «docker-registry»

3
使用Webhooks自动更新Docker容器
我创建了一个Github存储库和一个Docker存储库。两者可以很好地协同工作:当我将新版本的Dockerfile推送到Github时,会在Docker存储库中自动构建一个新映像。 现在,我希望在(重建)基础映像时自动更新正在运行的容器。 如何使用Docker repos webhooks实现它?

3
从私有注册表中删除标记的Docker映像
如何从私有Docker注册表中的映像中删除错误添加的标签?选项-rmi似乎不适用于Docker 1.9.1中的远程映像。 user@ubuntu-user:~$ docker --version Docker version 1.9.1, build a34a1d5 user@ubuntu-user:~$ docker search myregistry:5000/user/image NAME myregistry:5000/user/image:20160119 myregistry:5000/user/image:20160119-20160120 user@ubuntu-user:~$ docker rmi myregistry:5000/user/image:20160119-20160120 Error response from daemon: could not find image: no such id: myregistry:5000/user/image:20160119-20160120 Error: failed to remove images: [myregistry:5000/user/image:20160119-20160120]
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.