* Desktop: update mutagen file sync documentation
- terminology: we use "synchronize" rather than "cache"
- it's possible to configure it via `:delegated`
- it's possible to avoid it via `:cached`
- scripting should work better with `docker run`
- it's possible to use the global mutagen config file to completely
exclude directories from the sync (in both directions, not just one
direction)
Signed-off-by: David Scott <dave.scott@docker.com>
* Fix minor style issues
Wrap content and fix minor style issues
Co-authored-by: Usha Mandya <47779042+usha-mandya@users.noreply.github.com>
* Repeat information about Windows 10 Home
Useful for people who jump into the middle of the page without reading the top
* Update the link to Win Home install page
Co-authored-by: Usha Mandya <47779042+usha-mandya@users.noreply.github.com>
* Correct proxies documentation for Docker Desktop
The proxies set in the Docker Desktop settings are actually not propagated in the containers automatically.
The rationale being that we want the same UX on Windows/Mac and as on Linux.
Closes https://github.com/docker/for-win/issues/3676
* Minor style updates
* Wrap to 80 chars
Co-authored-by: Usha Mandya <47779042+usha-mandya@users.noreply.github.com>
* Update index.md
The proxies set in the Docker Desktop settings are actually not propagated in the containers automatically.
The rationale being that we want the same UX on Windows/Mac and as on Linux.
Related to https://github.com/docker/docker.github.io/pull/10890
* Minor update
Co-authored-by: Usha Mandya <47779042+usha-mandya@users.noreply.github.com>
* Add a note to create a context in different subscription
* Minor style updates
Made a minor tweak to the style and wrapped the new note to 80 chars
Co-authored-by: Usha Mandya <47779042+usha-mandya@users.noreply.github.com>
Original: on line 18 we have `images, err := cli.ImageList(context.Background(), types.ImageListOptions{})` which gives us an error of:
```
# command-line-arguments
./main.go:12:2: ctx declared but not used
```
*Fix:* on line 18 we need to have `images, err := cli.ImageList(ctx, types.ImageListOptions{})`