Jenkins | How to reset Jenkins Admin account password if you're running Jenkins in Docker
First, enter the docker container by using
docker exec -it [containerID] bin/bash
Your container is likely clean and need to install editing tools (or just use vim if you like!), run
apt-get update && apt-get install vi
Then, find the config.xml fi...