I have just started using docker desktop recently, I’ve always used it on linux installations.
I have few container running on my windows 11 machine and no major issues really except for one container not starting with docker desktop after a windows restart even though I have restart = unless-stopped in docker compose file.
services:
dozzle:
container_name: dozzle
image: amir20/dozzle:latest
restart: unless-stopped
volumes:
- /var/run/docker.sock:/var/run/docker.sock
ports:
- 8880:8080
networks: {}