When running a container and Docker Desktop is open, I get multiple windows that open up and run docker.exe then close

Running 4.34.1 ion Windows 11 Pro, with just dynamodb and mysql8 images running. When I start running more containers, these windows will start not closing, and docker will crash,

How do you run those containers? When do those windows appear?

dynamo

docker run --name=DynamoDB --restart=unless-stopped -p 8000:8000 -d amazon/dynamodb-local -jar DynamoDBLocal.jar -sharedDb

mysql8

docker run --name=mysql --restart=unless-stopped -e MYSQL_ROOT_PASSWORD=<password> -p 3306:3306 -d mysql:8.0 --character-set-server=utf8mb4 --collation-server=utf8mb4_unicode_ci --transaction-isolation="READ-COMMITTED" --log_bin_trust_function_creators=1

the windows only appear when the docker desktop dashboard is open.

I see nothing special in your commands so it shouldn’t open any windows. Can you try to update to 4.34.2? I had 4.34.0 and updated to 4.34.2 in which I could not reproduce the issue.