Forget docker container linux password. How do I reset it?

enter image description here

I forget this container ubuntu password. Is there any method to change it.

4

1 Answer

You can log into the Docker container using the root user (ID = 0) instead of the provided default user when you use the -u option:

docker exec -u 0 -it mycontainer bash
docker container exec -u 0 -it mycontainer bash

SeeDocker run reference.

source

1

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like