Enum DockerVolumeConsistency
Supported Docker volume consistency types.
public enum DockerVolumeConsistency
Fields
CACHED = 2
Read/write operations on mounted Docker volumes are first applied on the host machine and then synchronized to the container.
CONSISTENT = 0
Read/write operations inside the Docker container are applied immediately on the mounted host machine volumes.
DELEGATED = 1
Read/write operations on mounted Docker volumes are first written inside the container and then synchronized to the host machine.
Remarks
Only valid on macOS due to the way file storage works on Mac