How to Set Up Docker GUI Tools (DockerUI, Shipyard, Portainer) on a Single Host
This guide walks through installing and running three popular Docker graphical management tools—DockerUI, Shipyard, and Portainer—on a single machine, covering required Docker commands, firewall settings, container options, and how to access each UI via a web browser.
Docker provides several lightweight graphical interfaces for managing containers, the most popular being Portainer, followed by DockerUI and Shipyard. These tools query the Docker API to display resources, offering a more user‑friendly alternative to command‑line management.
DockerUI
DockerUI is the predecessor of Portainer. To install it on a single host: # docker search dockerui Pull the image: # docker pull abh1nav/dockerui Run the container with elevated privileges and expose port 9000:
# docker run -d --privileged --name dockerui -p 9000:9000 \
-v /var/run/docker.sock:/var/run/docker.sock abh1nav/dockeruiOpen the firewall for port 9000:
# firewall-cmd --permanent --zone=public --add-port=9000/tcp
# firewall-cmd --reloadAccess the UI in a browser at http://<em>HOST_IP</em>:9000 (e.g., http://192.168.2.119:9000).
Shipyard
Shipyard is another lightweight Docker GUI. The article includes an illustration but does not provide explicit installation commands; users can refer to the official Shipyard documentation for deployment steps.
Portainer
Portainer is currently the most widely adopted Docker UI. Installation steps:
# docker search portainer # docker pull portainer/portainerCreate a persistent volume for Portainer data: # docker volume create portainer_data Run the Portainer container, binding the Docker socket and the data volume, and exposing port 9000:
# docker run -d -p 9000:9000 \
--name portainer --restart always \
-v /var/run/docker.sock:/var/run/docker.sock \
-v portainer_data:/data portainer/portainerExplanation of key parameters: -v /var/run/docker.sock:/var/run/docker.sock mounts the host Docker daemon socket inside the container, allowing Portainer to control the host Docker engine. -v portainer_data:/data stores Portainer’s configuration and metadata persistently.
After the container starts, open a browser at http://<em>HOST_IP</em>:9000, set an admin username and password, and choose the "Local" endpoint to manage the single‑host Docker environment. For remote Swarm clusters, select "Remote" and provide the Swarm manager’s IP address.
Once logged in, the dashboard provides an overview of containers, images, networks, and volumes, enabling easy monitoring and management without using the CLI.
Signed-in readers can open the original source through BestHub's protected redirect.
This article has been distilled and summarized from source material, then republished for learning and reference. If you believe it infringes your rights, please contactand we will review it promptly.
Liangxu Linux
Liangxu, a self‑taught IT professional now working as a Linux development engineer at a Fortune 500 multinational, shares extensive Linux knowledge—fundamentals, applications, tools, plus Git, databases, Raspberry Pi, etc. (Reply “Linux” to receive essential resources.)
How this landed with the community
Was this worth your time?
0 Comments
Thoughtful readers leave field notes, pushback, and hard-won operational detail here.
