Where can I find the files generated by AutoGPT when using Docker? #3437
-
I have ran AutoGPT using docker with the command line below After it finished, I couldn't find the files it generated as a response to my task. I have entered Docker bash with this command But I cannot find it anywhere. How does AutoGPT works when it runs from a docker container? Where does it record its generated files? |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 6 replies
-
I run the AutoGpt via docker desktop and was able to see my files inside my directory, but outside of workspace folder. |
Beta Was this translation helpful? Give feedback.
-
The files are inside the docker container. If you want them on your local machine you need to use some kind of persistent volume. For instance write them from home/appuser/auto_gpt_workspace to your local workspace. This can be done by adjusting the docker composite yml. Keep in mind that one of the purposes for running it in a docker is security and to not potentially contaminate your own system (when it for instance visit malicious sites and writes data etc..). However if you know what you're doing there is not harm. As a tip perhaps as a next step also write your ai assistant yml and auto gpt json to local, so you can easily resume the next time you run your docker. |
Beta Was this translation helpful? Give feedback.
-
make sure your docker is running, after that your files are gone, unless mounted to a persistent disk. |
Beta Was this translation helpful? Give feedback.
make sure your docker is running, after that your files are gone, unless mounted to a persistent disk.