@ -6,28 +6,23 @@ DockerUI is a web interface to interact with the Remote API. The goal is to pro
![Container](/container.png)
###Goals
###Goals
* Little to no dependencies - I really want to keep this project a pure html/js app. I know this will have to change so that I can introduce authentication and authorization along with managing multiple docker endpoints.
* Consistency - The web UI should be consistent with the commands found on the docker CLI.
* Run your docker daemon with the following options:
* `docker -d -H="0.0.0.0:4243" -api-enable-cors`
* `docker run -d -p 80:9000 crosbymichael/dockerui -e="http://<dockerd host ip>:4243"`
* Open your browser to `http://<dockerd host ip>`
docker pull crosbymichael/dockerui
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 -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.
###Setup
1. Make sure that you are running dockerd ( docker -d ) with the -H and [-api-enable-cors](http://docs.docker.io/en/latest/api/docker_remote_api_v1.2/#cors-requests) so that the UI can make requests to the Remote API.
docker -d -H="192.168.1.9:4243" -api-enable-cors
docker -d -H="0.0.0.0:4243" -api-enable-cors
2. Open js/app.js. This is where you need to configure DockerUI so that it knows what ip and port your dockerd Remote API is listening on. There are two constants in the file that you will need to set, dockerd endpoint and dockerd port. If you have the Remote API running on port 80 then there is no need to set the port, just leave it as an empty string. The docker_endpoint needs to be set to the url that the Remote API can be accessed on. Please include the scheme as part of the url.