How to Install Dockhand on Your Synology NAS

How to Install Dockhand on Your Synology NAS

Dockhand is a modern, self-hosted Docker management platform with an intuitive web interface for homelabs, small businesses, and enterprises. It simplifies container operations, stack deployments, and observability through real-time management (start/stop/restart containers, web terminals, file transfers), a visual Compose editor, GitOps auto-sync, metrics, logs, OIDC/SSO, MFA, vulnerability scans, and multi-host support via the open-source Hawser agent. You can deploy it quickly as a Docker container with no cloud dependencies or telemetry. It’s forever free for personal use. In this step by step guide I will show you how to install Dockhand on your Synology NAS using Docker.

💡Note: This guide works perfectly with the latest Dockhand v1.0.2 release.

  • STEP 1

Please Support My work by Making a Donation.

  • STEP 2

Install Container Manager via Synology “Package Center”. If you run an older DSM version (under 7.2), search for Docker instead of Container Manager.

Download Container Manager Synology Docker

  • STEP 3

Go to File Station and open the docker folder. Inside the docker folder, create a new folder and name it dockhand. Follow the instructions in the image below.
Note: Be careful to use only lowercase, not uppercase letters.

Dockhand Synology NAS Set up 1 new 2026

  • STEP 4

Go to Control Panel / Task Scheduler / Create / Scheduled Task / User-defined script. Follow the instructions in the image below.

Synology User Defined Script

  • STEP 5

Once you click on User-defined script, a new window will open. Follow the instructions below:

    1. General: In the Task field type in “Install Dockhand“. Uncheck the “Enabled” option. Select root User.
    2. Schedule: Select Run on the following date then select “Do not repeat“.
    3. Task Settings: Check “Send run details by email“, add your email, then copy paste the code below in the Run command area. After that, click OK.
docker run -d --name=Dockhand \
-p 3866:3000 \
-v /var/run/docker.sock:/var/run/docker.sock \
-v /volume1/docker/dockhand:/app/data:rw \
--restart=always \
fnsys/dockhand:latest

Dockhand Synology NAS Set up 2 new 2026

  • STEP 6

After you click OK on STEP 5, a new warning pop up window will open. Click OK.

Dockhand Synology NAS Set up 3 new 2026

After you click OK, type in your DSM Password then click Submit. Follow the instructions in the image below.

Synology Task Scheduler Confirm Admin Password

  • STEP 7

After you click Submit at STEP 6, select your “Install Dockhand” Task, then click the “Run” tab. You will be asked to run Install Dockman – click OK. Follow the instructions in the image below.

Dockhand Synology NAS Set up 4

  • STEP 8

🟢Please Support My work by Making a Donation. Almost 99,9% of the people that install something using my guides forget to support my work, or just ignore STEP 1. I’ve been very honest about this aspect of my work since the beginning: I don’t run any ADS, I don’t require subscriptions, paid or otherwise, I don’t collect IPs, emails, and I don’t have any referral links from Amazon or other merchants. I also don’t have any POP-UPs or COOKIES. I have repeatedly been told over the years how much I have contributed to the community. It’s something I love doing and have been honest about my passion since the beginning. But I also Need The Community to Support me Back to be able to continue doing this work.

  • STEP 9

The installation process can take up to a few seconds/minutes. It will depend on your Internet speed connection. Open your browser and type in http://Synology-ip-address:3866 At the top right of the page, switch the theme to Dark. On the left sidebar, click Settings. Click +Add environment. Follow the instructions in the image below.

Dockhand Synology NAS Set up 5

  • STEP 10

A new pop up window will open. Type in the name of your server. From the dropdown menu, select Unix socket. Click Save. Follow the instructions in the image below.

Dockhand Synology NAS Set up 6

  • STEP 11 A

On the left sidebar, click Stacks then give a name to the compose yaml file then click + Create. For example, I will copy and paste my docker compose stack from homarr in the Compose file area. Follow the instructions in the image below. After creating the respective folder (STEP 11 B) for your own Docker compose Stack, click the Create & Start button. Follow the instructions in the image below.

Dockhand Synology NAS Set up 7

  • STEP 11 B

In my example, I create my homarr folder name in File Station. Follow the instructions in the image below.

Dockhand Synology NAS Set up 2 new 2026

  • STEP 12

On the left sidebar, click Containers to see your installed container. In this area, you can see the Homarr container that has been successfully installed.

Dockhand Synology NAS Set up 8

In my case, my Homarr container was successfully installed.

Dockhand Homarr Example

  • STEP 13

If you want to modify your current compose stack, click Stacks in the left sidebar. Expand your current stack, in my example “Homarr”, then click the little pencil icon. Follow the instructions in the image below.

Dockhand Synology NAS Set up 9

  • STEP 14

In this editor, you can easily modify your current compose stack. After you edit it, click Save & Apply. Follow the instructions in the image below.

Dockhand Synology NAS Set up 10

  • STEP 15

If you want, you can also access the container terminal. On the left sidebar, click Containers then select the container that you want to run the terminal. Click the little terminal icon and the terminal will automatically show up. Follow the instructions in the image below.

Dockhand Synology NAS Set up 11

  • STEP 16

On the left sidebar, click Dashboard to check out your real-time server stats. Follow the instructions in the image below.

Dockhand Synology NAS Set up 12

Enjoy Dockhand!

🆘TROUBLESHOOTING

If you encounter issues by using this container, make sure to check out the Common Docker issues article.

Note: If you want to run Dockhand over HTTPS, check out my article How to Run Docker Containers Over HTTPS. In order to make Dockhand work via HTTPS, it’s mandatory to activate WebSocket.

Note: If you use a different volume than volume1, for example volume2, you need to change the following line at STEP 6

docker run -d --name=Dockhand \
-p 3866:3000 \
-v /var/run/docker.sock:/var/run/docker.sock \
-v /volume1/docker/dockhand:/app/data:rw \
--restart=always \
fnsys/dockhand:latest

with

docker run -d --name=Dockhand \
-p 3866:3000 \
-v /var/run/docker.sock:/var/run/docker.sock \
-v /volume2/docker/dockhand:/app/data:rw \
--restart=always \
fnsys/dockhand:latest

Note: Follow the instructions below to update your Dockhand instance to the latest version:

  1. Open Container Manager.
  2. On the left sidebar in Container Manager, click Container.
  3. Select the dockhand container, then click the Action tab and Stop it.
  4. Select the dockhand container, then click the Action tab, then Delete.
  5. On the left sidebar in Container Manager, click Image.
  6. Select the fnsys/dockhand:latest image, then click the delete tab to delete it.
  7. Go to Control Panel. Click Task Scheduler. Select and Run the “Install Dockhand” task.
  8. Enjoy the latest Dockhand!
  9. Warning: Do NOT delete the dockhand folder in File Station.

Note: Can I run Docker on my Synology NAS? See the supported models.
Note: How to Back Up Docker Containers on your Synology NAS.
Note: How to Free Disk Space on Your NAS if You Run Docker.
Note: How to Schedule Start & Stop For Docker Containers.
Note: How to Activate Email Notifications.
Note: How to Add Access Control Profile on Your NAS.
Note: How to Change Docker Containers Restart Policy.
Note: How to Use Docker Containers With VPN.
Note: Convert Docker Run Into Docker Compose.
Note: How to Clean Docker.
Note: How to Clean Docker Automatically.
Note: Best Practices When Using Docker and DDNS.
Note: Some Docker Containers Need WebSocket.
Note: Find out the Best NAS Models For Docker.
Note: Activate Gmail SMTP For Docker Containers.

This post was updated on Wednesday / December 17th, 2025 at 7:12 PM