Docker 17
撰写 | Compose

docker-compose push

docker-compose push

Usage: push [options] [SERVICE...] Options: --ignore-push-failures Push what it can and ignores images with push failures.

将服务的图像推送到它们各自的位置registry/repository

做出以下假设:

  • 您正在推送您在本地创建的图像

  • 您可以访问构建密钥

version: '3' services: service1: build: . image: localhost:5000/yourimage # goes to local registry service2: build: . image: youruser/yourimage # goes to youruser DockerHub registry

fig, composition, compose, docker, orchestration, cli, push