So you set up a cool tool in a docker container but forgot to expose a /config
path and now all your setting are stored in the docker container and are not easy to back up. This note will guide you on transitioning your config files out of the container.
/new-config
docker exit -it CONTAINER
to run shell commands in the containercp -r /config /new-config
to copy the files into our mounted folder/new-config
to /config
🎉