diff --git a/lib/cli/scripts/docker-publish.ts b/lib/cli/scripts/docker-publish.ts index 8f8c344520..827840db67 100644 --- a/lib/cli/scripts/docker-publish.ts +++ b/lib/cli/scripts/docker-publish.ts @@ -53,7 +53,7 @@ function tagImagePerform(args: PublishArgs, tagImage: string, newTag: string) { function pushImagePerform(args: PublishArgs) { logger.info(`Perform docker push... ${args.dockerRepo} --all-tags`); - const response = exec('docker', ['push', `${args.dockerRepo} --all-tags`], {}); + const response = exec('docker', ['push', `${args.dockerRepo}`, `--all-tags`], {}); logger.info(response); }