
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.
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.

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

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.

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

STEP 7
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

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

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.

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.

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.

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

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.

In my case, my Homarr container was successfully installed.

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.

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.

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.

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

Enjoy Dockhand!
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