mirror of
https://github.com/docker/cli.git
synced 2026-01-18 08:21:31 +03:00
Support rw as a volume option in compose file.
Signed-off-by: Daniel Nephin <dnephin@docker.com>
This commit is contained in:
@@ -70,6 +70,8 @@ func populateFieldFromBuffer(char rune, buffer []rune, volume *types.ServiceVolu
|
||||
switch option {
|
||||
case "ro":
|
||||
volume.ReadOnly = true
|
||||
case "rw":
|
||||
volume.ReadOnly = false
|
||||
case "nocopy":
|
||||
volume.Volume = &types.ServiceVolumeVolume{NoCopy: true}
|
||||
default:
|
||||
|
||||
@@ -132,3 +132,17 @@ func TestParseVolumeWithReadOnly(t *testing.T) {
|
||||
assert.DeepEqual(t, volume, expected)
|
||||
}
|
||||
}
|
||||
|
||||
func TestParseVolumeWithRW(t *testing.T) {
|
||||
for _, path := range []string{"./foo", "/home/user"} {
|
||||
volume, err := parseVolume(path + ":/target:rw")
|
||||
expected := types.ServiceVolumeConfig{
|
||||
Type: "bind",
|
||||
Source: path,
|
||||
Target: "/target",
|
||||
ReadOnly: false,
|
||||
}
|
||||
assert.NilError(t, err)
|
||||
assert.DeepEqual(t, volume, expected)
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user