How to Install Dockhand on Your UGREEN NAS

How to Install Dockhand on Your UGREEN 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Ā UGREEN NAS using Docker.

šŸ’”Note: This guide works perfectly with the latest Dockhand v1.0.3Ā release.

šŸ’”Note: Check out my guide on how to Install Dockhand on Your Synology NAS.

  • STEP 1

Please Support My work by Making a Donation.

  • STEP 2

Add Read & Write Permissions to the Docker Folder. If you have already added the Read and Write Permissions to the Docker Folder, skip this STEP.

  • STEP 3

Install Docker via the UGREEN ā€œApp Centerā€. Search for Docker, then click Install App. Follow the instructions in the image below.

Dockhand UGREEN NAS Docker Install 1

  • STEP 4

Open Docker. On the left sidebar, click Project then Create. Follow the instructions in the image below.

Dockhand UGREEN NAS Docker Install 2

  • STEP 5

Type in the name of the project which is dockhand. Click Storage path. Click Create folder. Name the folder dockhand. Click Confirm. Follow the instructions in the image below.

Dockhand UGREEN NAS Docker Install 3

  • STEP 6

Select the dockhand folder, then click Confirm. Follow the instructions in the image below.

Dockhand UGREEN NAS Docker Install 4

  • STEP 7

Note: Copy Paste the code below in the Compose configuration area.


Select the Run immediately after creation option, then click Deploy. Follow the instructions in the image below.

services:
  dockhand:
    image: fnsys/dockhand:latest
    container_name: Dockhand
    ports:
      - 3866:3000
    volumes:
      - /volume1/docker/dockhand:/app/data:rw
      - /var/run/docker.sock:/var/run/docker.sock
    restart: always

Dockhand UGREEN NAS Docker Install 5

  • STEP 8

The Dockhand installation will automatically start. Click OK. Follow the instructions in the image below.

Dockhand UGREEN NAS Docker Install 6

  • STEP 9

🟢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 10

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://ugreen-ip-address:3866 At the top right of the page, switch the theme to Dark. On the left sidebar, click Settings. Select the Environments tab, then click +Add environment. Follow the instructions in the image below.

Dockhand UGREEN NAS Docker Install 8

  • STEP 11

A new pop up window will open. Type in the name of your server. From the dropdown menu, select Unix socket. Type in your local NAS IP in the Public IP field. Click + Add. Follow the instructions in the image below.

Dockhand UGREEN NAS Docker Install 9

  • STEP 12 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 12 B) for your own Docker compose Stack, click the Create & Start button. Follow the instructions in the image below.

Dockhand UGREEN NAS Docker Install 10

  • STEP 12 B

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

Homarr Dockhand UGREEN

  • STEP 13

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 UGREEN NAS Docker Install 11

In my case, my Homarr container was successfully installed.

Dockhand Homarr Example UGREEN

  • STEP 14

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 UGREEN NAS Docker Install 12

  • STEP 15

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 UGREEN NAS Docker Install 13

  • STEP 16

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 UGREEN NAS Docker Install 14

  • STEP 17

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

Dockhand UGREEN NAS Docker Install 15

Enjoy Dockhand!

šŸ†˜TROUBLESHOOTING

Note: If you want to run the Dockhand container over HTTPS, check out How to Run Docker Containers Over HTTPS on Your UGREEN NAS.

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

services:
  dockhand:
    image: fnsys/dockhand:latest
    container_name: Dockhand
    ports:
      - 3866:3000
    volumes:
      - /volume1/docker/dockhand:/app/data:rw
      - /var/run/docker.sock:/var/run/docker.sock
    restart: always

with

services:
  dockhand:
    image: fnsys/dockhand:latest
    container_name: Dockhand
    ports:
      - 3866:3000
    volumes:
      - /volume2/docker/dockhand:/app/data:rw
      - /var/run/docker.sock:/var/run/docker.sock
    restart: always

🐳Note: How to Create Docker Shortcuts on Desktop.
šŸ†•Note: How to Clean Docker.

This post was updated on Thursday / December 18th, 2025 at 11:17 PM