i am new to devops specially docker, i have created a docker image to config Jenkins inside a docker container to make the data persistent i have used docker volume, i am using the following command:
docker run -p 8080:8080 -d jenkins_home:/var/jenkins_home
this command is running jenkins through docker and storing data in jenkins_home named volume
can i find where this Jenkins data is located on the host machine and i can access the jenkins data or the volume data is stored in container itself
is there a way to store jenkins data on host drive using volumes?
i am using windows 10
i want the data on the host machine thanks :)