I am using Windows 11 pro x64, Docker 4.12.0 (85629) . I follow guide at https://www.jenkins.io/doc/book/installing/docker/#on-windows
docker run --name jenkins-docker --rm --detach ^
--privileged ^
--env DOCKER_TLS_CERTDIR=/certs ^
--volume jenkins-docker-certs:/certs/client ^
--volume jenkins-data:/var/jenkins_home ^
--publish 2376:2376 ^
docker:dind
Docker container log https://gist.github.com/donhuvy/ec283a3835016abe5329e3e0531099a1
How to run Jenkins Docker image/container success?
Update: If delete previous container, then I run
docker run --name vyjenkins -p 2376:2376 jenkins/jenkins
I go to https://localhost:2376/ , it also still did not work.


