Skip to content

Commit

Permalink
Merge pull request moby#5245 from ardrabczyk/add-missing-suggestions
Browse files Browse the repository at this point in the history
dockerfile: add missing mount completions
  • Loading branch information
tonistiigi authored Aug 13, 2024
2 parents add7328 + 45e41c8 commit 820417a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/dockerfile/instructions/commands_runmount.go
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ func parseMount(val string, expander SingleWordExpander) (*Mount, error) {
m.GID = &gid
default:
allKeys := []string{
"type", "from", "source", "target", "readonly", "id", "sharing", "required", "mode", "uid", "gid", "src", "dst", "ro", "rw", "readwrite",
"type", "from", "source", "target", "readonly", "id", "sharing", "required", "size", "mode", "uid", "gid", "src", "dst", "destination", "ro", "rw", "readwrite",
}
return nil, suggest.WrapError(errors.Errorf("unexpected key '%s' in '%s'", key, field), key, allKeys, true)
}
Expand Down

0 comments on commit 820417a

Please sign in to comment.