Skip to content

Commit 6b00aaa

Browse files
Merge pull request #2573 from lifubang/relativepathforrootfs
support relative rootfs path in ctr
2 parents 68a5db6 + dc6ed04 commit 6b00aaa

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

cmd/ctr/commands/run/run_unix.go

+6-1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ package run
2020

2121
import (
2222
gocontext "context"
23+
"path/filepath"
2324
"strings"
2425

2526
"github.com/containerd/containerd"
@@ -61,7 +62,11 @@ func NewContainer(ctx gocontext.Context, client *containerd.Client, context *cli
6162
opts = append(opts, withMounts(context))
6263

6364
if context.Bool("rootfs") {
64-
opts = append(opts, oci.WithRootFSPath(ref))
65+
rootfs, err := filepath.Abs(ref)
66+
if err != nil {
67+
return nil, err
68+
}
69+
opts = append(opts, oci.WithRootFSPath(rootfs))
6570
} else {
6671
snapshotter := context.String("snapshotter")
6772
image, err := client.GetImage(ctx, ref)

0 commit comments

Comments
 (0)