How to prevent docker containers auto-start at daemon start in Windows? [closed]
You can easily achieve this by using the following command:
docker update --restart=no my-container
Where my-container should be every container you don't want to be started when your Host (In this case W10) boots.