Skip to content

Instantly share code, notes, and snippets.

@TeodorPetrovic
TeodorPetrovic / README.md
Created October 7, 2025 08:46 — forked from ricardo-dlc/README.md
Update Jenkins Inside a Docker Container

First identify your image.

$ docker ps --format "{{.ID}}: {{.Image}} {{.Names}}"
3d2fb2ab2ca5: jenkins-docker jenkins-docker_1

Then login into the image as root.

$ docker container exec -u 0 -it jenkins-docker_1 /bin/bash