https://github.com/42bv/docker-for-mac-workarounds
Various workarounds for Docker for Mac
https://github.com/42bv/docker-for-mac-workarounds
docker docker-for-mac workaround
Last synced: 7 months ago
JSON representation
Various workarounds for Docker for Mac
- Host: GitHub
- URL: https://github.com/42bv/docker-for-mac-workarounds
- Owner: 42BV
- Created: 2017-03-10T09:59:42.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-03-13T21:35:07.000Z (almost 9 years ago)
- Last Synced: 2025-05-16T12:39:50.550Z (8 months ago)
- Topics: docker, docker-for-mac, workaround
- Language: Shell
- Size: 1000 Bytes
- Stars: 2
- Watchers: 9
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Docker for Mac Workarounds
## Flush Fix
The old disk/full-sync-on-flush is now replaced by the key disk/on-flush which takes the following values:
- os: use fsync to flush the buffers to the OS
- drive: use fcntl to flush the buffers to the drive
- none: do nothing on a flush
### Usage
```
./flush-fix.sh -v -f none
```
### Options
```
./flush-fix.sh [options...]
Options:
-f [value] Supported value's in preferred order:
- none (do nothing on a flush)
- ︎os (use fsync to flush the buffers to the OS)
- drive (use fcntl to flush the buffers to the drive)
-v Verbose output
-h Show this help
```