From 8d34c1fff37815b12d0d3a5de393603b7e3c0931 Mon Sep 17 00:00:00 2001 From: JP Date: Wed, 2 Oct 2013 16:39:48 -0400 Subject: [PATCH] Fix dockerui container instructions Remove `/dockerui` from command line -- not needed since that is set in the Dockerfile's ENTRYPOINT. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index dc57ccfb5..8d2c866f4 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ DockerUI is a web interface to interact with the Remote API. The goal is to pro This is the easiest way to run DockerUI. To run the container make sure you have dockerd running with the -H option so that the remote api can be accessed via ip and not bound to localhost. After you pull the container you need to run it with your dockerd ip as an argument to the dockerui command. - docker run -d crosbymichael/dockerui /dockerui -e="http://192.168.1.9:4243" + docker run -d crosbymichael/dockerui -e="http://192.168.1.9:4243" This tells dockerui to use http://192.168.1.9:4243 to communicate to dockerd's Remote API.