You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
removeSignaturesbool// Do not copy signatures from the source image
35
+
signByFingerprintstring// Sign the image using a GPG key with the specified fingerprint
36
+
sourcestring// Source repository name
37
+
destinationstring// Destination registry name
38
+
scopedbool// When true, namespace copied images at destination using the source repository name
39
+
allbool// Copy all of the images if an image in the source is a list
40
+
scopedWithoutRegistrybool// When true, like scoped but without the registry prefix
40
41
}
41
42
42
43
// repoDescriptor contains information of a single repository used as a sync source.
@@ -98,6 +99,7 @@ See skopeo-sync(1) for details.
98
99
flags.StringVarP(&opts.source, "src", "s", "", "SOURCE transport type")
99
100
flags.StringVarP(&opts.destination, "dest", "d", "", "DESTINATION transport type")
100
101
flags.BoolVar(&opts.scoped, "scoped", false, "Images at DESTINATION are prefix using the full source image path as scope")
102
+
flags.BoolVar(&opts.scopedWithoutRegistry, "scoped-without-registry", false, "Images at DESTINATION are prefix using the full source image path as scope but without the registry")
101
103
flags.BoolVarP(&opts.all, "all", "a", false, "Copy all images if SOURCE-IMAGE is a list")
0 commit comments