I have completed the moving pictures tutorial by running qiime2/core:2019.10. After I completed the tutorial I typed "exit" then I typed "docker commit " and the numbers after "root@" and When I type "docker image ls" I can see the new image from the tutorial I just ran and that it has a file size.
My question is: If I want to go back into the tutorial and open some files I had made during the analysis, how would I do that? Is it possible with the actions I took?
Any advice anyone can give would be invaluable. I am new to qiime and docker and not many tutorials cover what to do after you are done analyzing your data.
This is probably unnecessary, since you can use "volumes" to save data to, instead of keeping it locked up in docker.
If you ran the command suggested on the docs, nothing:
docker run -t -i -v $(pwd):/data qiime2/core:2019.10 qiime
This will mount your current working directory to the /data dir inside the container - anything you create or manipulate in /data will be saved in your current working directory on your host machine.
I think I understand now, some documents a colleague gave me did not include "/data" , so I assume that explains why these documents are not found on my host machine?
This is why I wanted to run the tutorial a few times so I was comfortable with everything.
Thank you very much for the speedy response and clarification!
I recieved the following error:
C:\Program Files\Docker\Docker\resources\bin\docker.exe: invalid reference format.
See 'C:\Program Files\Docker\Docker\resources\bin\docker.exe run --help'.
I see this is a common error and all the solutions I see aren't directly applicable to this situation. I am using windows PowerShell if that means anything.