[Docker] Trouble finding where config and logs are stored #907
-
My docker compose file:
I spin up the stack, create a new config yml and see in the logs it was successfully written to disk:
I see the config folder was created, but it's empty?
I do see the config yml being created in some non-persistent folder:
I guess what I can't figure out is why the config yml and log files aren't being written to disk in the expected location? I thought maybe using the localized . syntax was the issue, but I get the same results using the absolute path. I thought maybe it's komodo but I have 25 other docker stacks deployed with similar local/absolute volume structures and no problems. Only qbit_manage. Am I missing something obvious? |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 1 reply
-
The logs clearly indicate it is using g /app/config and there is no mount for that. perhaps RTFM and understand the variables needed and mounts. |
Beta Was this translation helpful? Give feedback.
-
I apologize if I offended you? I followed the docker installation instructions. The docker compose listed there has /config as the internal mount point. I didn't see anything saying the default needed to be changed to /app/config. Could you point me to where that's documented? It would help people in the future avoid the same mistake. [edit] changing |
Beta Was this translation helpful? Give feedback.
-
My bad. I only showed a portion of my docker compose file. Tried to signify that with the
What tripped me up was the default compose file on the instructions page is this:
No mention of |
Beta Was this translation helpful? Give feedback.
I apologize if I offended you?
I followed the docker installation instructions. The docker compose listed there has /config as the internal mount point. I didn't see anything saying the default needed to be changed to /app/config. Could you point me to where that's documented? It would help people in the future avoid the same mistake.
[edit] changing
/config
to/app/config
fixed the issue for me on the latest qbt_manage docker image.