When will docker desktop for Mac be updated with latest docker engine v23.0.1

When will docker desktop be updated to use the latest docker engine?

I am trying to reproduce locally an issue we are encountering with swar pit pushing configs to docker which has arisen since our upgrade to v23.0.0.

Rich

I don’t know the answer to your question, but I recommend you to run a virtual machine using Multipass. This is what I use when I need to access the Docker Engine directly on Linux and Multipass has a base image that already contains Docker pre-installed with the latest version.

Once you installed multipass, you can create the virtual machine:

multipass launch --name docker-test docker

Then you can run a shell in the VM:

multipass shell docker-test

and test the issue you had after the upgrade.