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've recently switched most of my containers to using Docker Volumes (docker volume create) that are backed by NFS. I've copied the same config to all of my services and Prowlarr is the only service that fails to mount with the NFS "nocopy" option.
Terminal error output:
user@debian-server:~/docker/test$ sudo docker compose -f docker-compose.yml up -d prowlarr && sudo docker logs -f prowlarr
[+] Running 4/4
✔ Network test Created 0.1s
✔ Volume "prowlarr" Created 0.0s
⠋ Container prowlarr Creating 0.0s
Error response from daemon: failed to mount local volume: mount :/volume1/Docker/containers/prowlarr/config:/var/lib/docker/volumes/prowlarr/_data, data: addr=10.10.10.50,nolock,nocopy,hard: invalid argument
As soon as the "nocopy" option is removed, the container volume mounts fine.
We do not support or recommend putting config folders on file/object based remote storage for various reasons. Databases especially do not like file/object based remote mounts. Block storage on the other hand should be fine.
Is there an existing issue for this?
Current Behavior
I've recently switched most of my containers to using Docker Volumes (
docker volume create
) that are backed by NFS. I've copied the same config to all of my services and Prowlarr is the only service that fails to mount with the NFS "nocopy" option.Terminal error output:
As soon as the "nocopy" option is removed, the container volume mounts fine.
Compose file:
Expected Behavior
The container should have no issue supporting the NFS "nocopy" option.
Steps To Reproduce
Environment
CPU architecture
x86-64
Docker creation
Container logs
There is no docker logs because the container fails to start due to the NFS "nocopy" option
The text was updated successfully, but these errors were encountered: