Function
buildTmpfsOptions
(tmpfs *types.ServiceVolumeTmpfs)
Source from the content-addressed store, hash-verified
| 1298 | } |
| 1299 | |
| 1300 | func buildTmpfsOptions(tmpfs *types.ServiceVolumeTmpfs) *mount.TmpfsOptions { |
| 1301 | if tmpfs == nil { |
| 1302 | return nil |
| 1303 | } |
| 1304 | return &mount.TmpfsOptions{ |
| 1305 | SizeBytes: int64(tmpfs.Size), |
| 1306 | Mode: os.FileMode(tmpfs.Mode), |
| 1307 | } |
| 1308 | } |
| 1309 | |
| 1310 | func buildImageOptions(image *types.ServiceVolumeImage) *mount.ImageOptions { |
| 1311 | if image == nil { |
Tested by
no test coverage detected