Pinata missing in latest Mac Beta 1.11.2-beta15

I also think we should have CLI or configuration file access to configure Docker for Mac. We also automate our installation/setup so developers don’t have to follow documentation to get their systems configured correctly.

We will not move forward with Docker for Mac without a way to automate setup.

Docker Toolbox is labeled as legacy, will support for this also be removed in the future?

Hi I’ve found a way to use the internal DB of docker-for-mac to change some configurations (in fact mem & cpu) but you can change others

docker run --rm -it --net datakit-net --name datakit -v /Users/$(whoami)/Library/Containers/com.docker.docker/Data/database:/data datakit/db
docker run -it --privileged --net datakit-net datakit/client
##In the contaner
mkdir /db/branch/master/transactions/com.docker.driver.amd64-linux
cd /db/branch/master/transactions/com.docker.driver.amd64-linux/rw/com.docker.driver.amd64-linux
## Change amount of cpus
echo 4 > cd /db/branch/master/transactions/com.docker.driver.amd64-linux/rw/com.docker.driver.amd64-linux/ncpu
echo commit > /db/branch/master/transactions/com.docker.driver.amd64-linux/ctl

You can change other files also.

It’s very tricky today but I will check if i can build a client to modify those files.