Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issue with Mounting /data Directory in Docker Compose #287

Open
arnoulddw opened this issue Nov 22, 2024 · 0 comments
Open

Issue with Mounting /data Directory in Docker Compose #287

arnoulddw opened this issue Nov 22, 2024 · 0 comments

Comments

@arnoulddw
Copy link

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant