Unraid setup #93
-
|
Hi, thank you again for the great app. Regarding the headless setup. Is there a way to deploy it in a container but use the host rclone installed? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
|
Thanks for kind words! Yes, there is a prebuilt container available! You can find the headless RClone Manager images on the GitHub Package Registry. You can pull the image using: docker pull ghcr.io/zarestia-dev/rclone-manager:latest
(You can also use a specific SHA like Regarding your question about using the host's Rclone: For an Unraid/Docker setup, you would map the volumes like this:
This ensures the container uses your existing remotes. Note that if you mount drives inside the container, they won't automatically be visible on the host unless you configure bind propagation (e.g., You can also check the wiki |
Beta Was this translation helpful? Give feedback.
-
|
Great thanks! |
Beta Was this translation helpful? Give feedback.
Thanks for kind words!
Yes, there is a prebuilt container available! You can find the headless RClone Manager images on the GitHub Package Registry.
You can pull the image using:
(You can also use a specific SHA like
sha-5b25545if you need a pinned version, butlatestis recommended for updates).Regarding your question about using the host's Rclone:
The container typically runs its own internal
rclonebinary. To "use" your host's installation, the standard approach is to bind-mount your host's configuration file into the container. This allows the Manager to see and control the exact same remotes defined on your host.For an Unraid…