Insufficient Memory when Deploying MSSQL to Docker Desktop Kubernetes

How do I determine what version of docker for desktop I am running? I think I am running the latest because I just did an update.

As described at https://stackoverflow.com/questions/62879470/how-to-deploy-sql-server-express-on-docker-desktop-kubernetes

I do a

    helm install todo-app-database stable/mssql-linux

and I get this from kubectl get events

    Warning   FailedScheduling   pod/todo-app-database-mssql-linux-8668d9b88c-lsh5l   0/1 nodes are available: 1 Insufficient memory.

The yaml files generated by helm are asking for 2GB of memory. I have 16GB on my Windows 10 notebook computer. Is there a way to allow Docker Desktop to grab more memory from windows 10?

Thanks

Siegfried