I'm having a bit of a frustrating time trying to locate a file within a running Docker container. Specifically, I'm working with a qBittorrent container (from lscr.io/linuxserver/qbittorrent) on a Debian-based host. I got curious about where the login logo image is stored, but despite searching the entire root filesystem for the filename, parts of the filename, and even just its file extension, I can't seem to find anything. The login page is so simple, yet I can't locate the relevant page, the .js file, the .css file, or the image file I need from the 'images' folder (specifically /images/qbittorrent-tray.svg). What am I doing wrong here? This feels like such a silly situation!
1 Answer
Are you trying to find out where the files from the container are stored? You can check out the GitHub repository for qBittorrent to see the relevant files, like the ones in the web UI folder. They might give you a hint about their locations in the container.
Yes, that's exactly the kind of information I need! I’m still learning the ropes with Docker, so I appreciate the help.