<!--Delete sections as needed -->
## Description
<!-- Tell us what you did and why -->
## Related issues or tickets
<!-- Related issues, pull requests, or Jira tickets -->
## Reviews
<!-- Notes for reviewers here -->
<!-- List applicable reviews (optionally @tag reviewers) -->
- [ ] Technical review
- [ ] Editorial review
- [ ] Product review
<!--Delete sections as needed -->
## Description
Fixes Compose Bridge CLI docs not displaying and updates the docs to the
new commands
## Related issues or tickets
<!-- Related issues, pull requests, or Jira tickets -->
## Reviews
<!-- Notes for reviewers here -->
<!-- List applicable reviews (optionally @tag reviewers) -->
- [ ] Technical review
- [ ] Editorial review
- [ ] Product review
## Description
While I am *also* having Resource Saver problems on Mac OS, this
specific link is for Windows.
<!-- Notes for reviewers here -->
<!-- List applicable reviews (optionally @tag reviewers) -->
- [ ] Technical review
- [x] Editorial review
- [ ] Product review
My IDE didn't like it being wrapped; probably didn't have an actual
impact though, as browsers are quite forgiving.
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
## Description
This doc only listed 3 of the 4 images that Docker Desktop pulls when
starting kind
## Related issues or tickets
N/A
## Reviews
<!-- Notes for reviewers here -->
<!-- List applicable reviews (optionally @tag reviewers) -->
cc @andrewb-ontheinternet @ctalledo
- [X] Technical review
- [ ] Editorial review
- [ ] Product review
## Description
Replaced "Configure CI/CD" step of the Python guide with "Configure
GitHub Actions" step to have it similar structure as the Rails guide.
## Related issues or tickets
#22114
## Reviews
- [ ] Technical review
- [x] Editorial review
- [ ] Product review
## Description
- Next DD release will support Enforce Sign-in for Teams, do not merge
this until DD release date next week
## Related issues or tickets
- https://docker.atlassian.net/browse/ENGDOCS-2669
## Reviews
- [ ] Editorial review
<!--Delete sections as needed -->
## Description
<!-- Tell us what you did and why -->
## Related issues or tickets
<!-- Related issues, pull requests, or Jira tickets -->
## Reviews
<!-- Notes for reviewers here -->
<!-- List applicable reviews (optionally @tag reviewers) -->
- [ ] Technical review
- [ ] Editorial review
- [ ] Product review
---------
Signed-off-by: Lorena Rangel <lorena.rangel@docker.com>
Co-authored-by: David Scott <djs55@users.noreply.github.com>
<!--Delete sections as needed -->
## Description
<!-- Tell us what you did and why -->
## Related issues or tickets
https://docker.atlassian.net/browse/ENGDOCS-1489
## Reviews
<!-- Notes for reviewers here -->
<!-- List applicable reviews (optionally @tag reviewers) -->
- [ ] Technical review
- [ ] Editorial review
- [ ] Product review
<!--Delete sections as needed -->
## Description
In line with this change https://github.com/docker/docs/pull/22721,
updating other references to the older version of WSL.
<!-- Tell us what you did and why -->
## Related issues or tickets
<!-- Related issues, pull requests, or Jira tickets -->
## Reviews
<!-- Notes for reviewers here -->
<!-- List applicable reviews (optionally @tag reviewers) -->
- [ ] Technical review
- [ ] Editorial review
- [ ] Product review
## Description
Go mod is currently in broken state:
```
# get https://proxy.golang.org/github.com/docker/cli/@v/v28.2.1+incompatible.zip
# get https://proxy.golang.org/github.com/moby/moby/@v/v28.2.1+incompatible.zip: 200 OK (0.042s)
# get https://proxy.golang.org/github.com/docker/cli/@v/v28.2.1+incompatible.zip: 200 OK (0.128s)
verifying github.com/moby/moby@v28.2.1+incompatible: checksum mismatch
downloaded: h1:UYmHExYP8S0uGKDozhYw7RJ+LpANL51g4fa3qT0Q2GA=
go.sum: h1:UYmHExYP8S0uGKDozhYw7RJ+LpANL51g4fa3qT0Q2GA=+
SECURITY ERROR
This download does NOT match an earlier download recorded in go.sum.
The bits may have been replaced on the origin server, or an attacker may
have intercepted the download attempt.
For more information, see 'go help module-auth'.
```
Seems related to this merge commit:
[f328984](2645703e0f)
Fixed it by rebuilding the `go.sum` with:
```
rm -f go.sum && make vendor
```
## Reviews
<!-- Notes for reviewers here -->
<!-- List applicable reviews (optionally @tag reviewers) -->
- [ ] Technical review
- [ ] Editorial review
- [ ] Product review
Signed-off-by: CrazyMax <1951866+crazy-max@users.noreply.github.com>