Build the Jenkins BlueOcean Docker Image (or pull and use the one I built)
docker build -t jenkins .
Create the network 'jenkins'
docker network create jenkins
docker run --name jenkins --restart=on-failure --detach \
--network jenkins --env DOCKER_HOST=tcp://docker:2376 \
--env DOCKER_CERT_PATH=/certs/client --env DOCKER_TLS_VERIFY=1 \
--publish 8080:8080 --publish 50000:50000 \
--volume jenkins-data:/var/jenkins_home \
--volume jenkins-docker-certs:/certs/client:ro \
myjenkins-blueocean:2.414.2
docker exec jenkins /var/jenkins_home/secrets/initialAdminPassword