docker compose push
描述 | 推送服务镜像 |
---|---|
用法 | docker compose push [OPTIONS] [SERVICE...] |
描述
将服务的镜像推送到其各自的注册表/仓库。
做出以下假设:
- 您正在推送本地构建的镜像。
- 您可以访问构建密钥。
示例
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 | 推送镜像但不打印进度信息。 |