You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm encountering an issue when trying to mount the /data directory using Docker Compose. The mount does not work as expected. However, when I use /media instead of /data, it works correctly.
Steps to Reproduce:
Set up Docker Compose with the following configuration:
I'm encountering an issue when trying to mount the /data directory using Docker Compose. The mount does not work as expected. However, when I use /media instead of /data, it works correctly.
Steps to Reproduce:
Set up Docker Compose with the following configuration:
version: '3'
services:
qbittorrentvpn:
image: binhex/arch-qbittorrentvpn
volumes:
- /path/to/local/data:/data
Run docker-compose up.
Observe that the /data mount does not function as intended.
Change the configuration to use /media:
version: '3'
services:
qbittorrentvpn:
image: binhex/arch-qbittorrentvpn
volumes:
- /path/to/local/data:/media
Run docker-compose up again.
Notice that the mount works correctly with /media.
Expected Behavior:
The /data directory should mount correctly without needing to change to /media.
The text was updated successfully, but these errors were encountered: