I have to mention that I am new to docker world.
I have used image to create docker container for web application. When I run the application using the command:
$ docker run --privileged --name img -d -e ROOT_PASS="root" -e PRODUCT_CMD="startapp" -v /C:/w:/application -p 8080:8080 -p 1521:1521 -p 5001:5001 -p 9990:9990 app_image:1.0
the container starts. When I check the status using:
$ docker ps -a
the container has status Exited (1)
After that I tried to access the container using
$ winpty docker exec -it cntadev /bin/bash
I get the error msg: Error response from daemon: Container 4bb80921849e0fbddde4aff564c7a523aa94f163abcf54ec003ff785659c8bb0 is not running
My question: how can I check the content of the docker container to make sure that it contains all files? I am using docker desktop. Can I find the container somewhere in file system?