mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
3e3d3c8086
For `--mount type=tmpfs,target=/foo,readonly`, the `readonly` flag was just ignored. Signed-off-by: Akihiro Suda <suda.akihiro@lab.ntt.co.jp>
16 lines
375 B
Go
16 lines
375 B
Go
// +build !linux
|
|
|
|
package volume
|
|
|
|
import (
|
|
"fmt"
|
|
"runtime"
|
|
|
|
mounttypes "github.com/docker/docker/api/types/mount"
|
|
)
|
|
|
|
// ConvertTmpfsOptions converts *mounttypes.TmpfsOptions to the raw option string
|
|
// for mount(2).
|
|
func ConvertTmpfsOptions(opt *mounttypes.TmpfsOptions, readOnly bool) (string, error) {
|
|
return "", fmt.Errorf("%s does not support tmpfs", runtime.GOOS)
|
|
}
|