@@ -24,6 +24,7 @@ import (
24
24
25
25
"github.com/containerd/containerd"
26
26
"github.com/containerd/containerd/cmd/ctr/commands"
27
+ "github.com/containerd/containerd/images/docker"
27
28
oci "github.com/containerd/containerd/images/oci"
28
29
"github.com/containerd/containerd/log"
29
30
"github.com/urfave/cli"
@@ -35,11 +36,14 @@ var importCommand = cli.Command{
35
36
ArgsUsage : "[flags] <in>" ,
36
37
Description : `Import images from a tar stream.
37
38
Implemented formats:
38
- - oci.v1 (default)
39
+ - oci.v1
40
+ - docker.v1.1
41
+ - docker.v1.2
39
42
40
43
41
- For oci.v1 format, you need to specify --oci-name because an OCI archive contains image refs (tags)
42
- but does not contain the base image name.
44
+ For OCI v1, you may need to specify --base-name because an OCI archive
45
+ contains only partial image references (tags without the base image name).
46
+ If no base image name is provided, a name will be generated as "import-%{date}".
43
47
44
48
e.g.
45
49
$ ctr images import --format oci.v1 --oci-name foo/bar foobar.tar
@@ -50,18 +54,22 @@ If foobar.tar contains an OCI ref named "latest" and anonymous ref "sha256:deadb
50
54
Flags : append ([]cli.Flag {
51
55
cli.StringFlag {
52
56
Name : "format" ,
53
- Value : "oci.v1 " ,
54
- Usage : "image format. See DESCRIPTION. " ,
57
+ Value : "" ,
58
+ Usage : "image format, by default supports OCI v1, Docker v1.1, Docker v1.2 " ,
55
59
},
56
60
cli.StringFlag {
57
- Name : "prefix ,oci-name" ,
61
+ Name : "base-name ,oci-name" ,
58
62
Value : "" ,
59
- Usage : "prefix image name for added images" ,
63
+ Usage : "base image name for added images, when provided images without this name prefix are filtered out " ,
60
64
},
61
65
cli.BoolFlag {
62
66
Name : "digests" ,
63
67
Usage : "whether to create digest images" ,
64
68
},
69
+ cli.StringFlag {
70
+ Name : "index-name" ,
71
+ Usage : "image name to keep index as, by default index is discarded" ,
72
+ },
65
73
}, commands .SnapshotterFlags ... ),
66
74
67
75
Action : func (context * cli.Context ) error {
@@ -70,23 +78,30 @@ If foobar.tar contains an OCI ref named "latest" and anonymous ref "sha256:deadb
70
78
opts []containerd.ImportOpt
71
79
)
72
80
81
+ prefix := context .String ("base-name" )
82
+ if prefix == "" {
83
+ prefix = fmt .Sprintf ("import-%s" , time .Now ().Format ("2006-01-02" ))
84
+ }
85
+
73
86
switch format := context .String ("format" ); format {
74
- case "oci.v1" :
87
+ case "" , "docker" , "docker.v1.1" , "docker.v1.2" :
88
+ opts = append (opts , containerd .WithImporter (& docker.V1Importer {}))
89
+ opts = append (opts , containerd .WithImageRefTranslator (docker .RefTranslator (prefix , context .String ("base-name" ) != "" )))
90
+ case "oci" , "oci.v1" :
75
91
opts = append (opts , containerd .WithImporter (& oci.V1Importer {}))
76
-
77
- prefix := context .String ("prefix" )
78
- if prefix == "" {
79
- prefix = fmt .Sprintf ("import-%s" , time .Now ().Format ("2006-01-02" ))
80
- }
81
-
82
92
opts = append (opts , containerd .WithImageRefTranslator (oci .RefTranslator (prefix )))
83
- if context .Bool ("digests" ) {
84
- opts = append (opts , containerd .WithDigestRef (oci .DigestTranslator (prefix )))
85
- }
86
93
default :
87
94
return fmt .Errorf ("unknown format %s" , format )
88
95
}
89
96
97
+ if context .Bool ("digests" ) {
98
+ opts = append (opts , containerd .WithDigestRef (oci .DigestTranslator (prefix )))
99
+ }
100
+
101
+ if idxName := context .String ("index-name" ); idxName != "" {
102
+ opts = append (opts , containerd .WithIndexName (idxName ))
103
+ }
104
+
90
105
client , ctx , cancel , err := commands .NewClient (context )
91
106
if err != nil {
92
107
return err
0 commit comments