docker compose 推送
描述 | 推送服务镜像 |
---|---|
用法 | docker compose push [OPTIONS] [SERVICE...] |
描述
将服务的镜像推送到各自的注册表/存储库。
做出以下假设:
- 您正在推送在本地构建的镜像
- 您有权访问 build key
例子
services:
service1:
build: .
image: localhost:5000/yourimage ## goes to local registry
service2:
build: .
image: your-dockerid/yourimage ## goes to your repository on Docker Hub
选项
选择 | 违约 | 描述 |
---|---|---|
--ignore-push-failures | 推送它能推送的内容,并忽略推送失败的镜像 | |
--include-deps | 同时推送声明为依赖项的服务的镜像 | |
-q, --quiet | 推送而不打印进度信息 |