-
I'm currently looking for a way to export/extract the data folder of my docker container, so I can import it on another FoundryVTT setup that doesn't run with docker. Is this possible? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Yes, the data used by FoundryVTT in the Docker container is exportable. How you export the data largely depends on the type of mount you used for your
For instance, if you'd like to copy everything from the container's docker cp container-name:/data /tmp/foo Replace After running this command, you'll find a copy of all FoundryVTT runtime data ( You can then use these extracted files for setting up FoundryVTT on another system. Remember to replace |
Beta Was this translation helpful? Give feedback.
(@Nyankoo, I noticed you asked a question in a new "answer". GitHub's discussion interface can be a bit confusing, so I'm responding to your question here.)
Yes, you're correct. If you didn't specify a bind mount or named volume for the
/data
directory when creating the container, Docker automatically created an anonymous volume.If the container is still running, you can use the
docker cp
command to copy the data from the/data
directory in the container to your host …