abh1nav/dockerui
An updated version of crosbymichael/dockerui that exposes the Container Restart functionality. Last synced with upstream on 2014-09-10.
500K+
DockerUI is a web interface to interact with the Remote API. The goal is to provide a pure client side implementation so it is effortless to connect and manage docker. This project is not complete and is still under heavy development.
Step 1
Pull the latest image:
docker pull abh1nav/dockerui:latest
Step 2
If you're running Docker using a unix socket (default):
docker run -d -p 9000:9000 -v /var/run/docker.sock:/docker.sock \
--name dockerui abh1nav/dockerui:latest -e="/docker.sock"
If you're running Docker over tcp:
docker run -d -p 9000:9000 --name dockerui \
abh1nav/dockerui:latest -e="http://<dockerd host ip>:4243"
Step 3
Open your browser to http://<dockerd host ip>:9000
Warning
Bind mounting the unix socket into the DockerUI container is much more secure than exposing your docker daemon over TCP. You should still secure your DockerUI instance behind some type of auth. Maybe running Nginx infront of DockerUI with basic auth.
The DockerUI code is licensed under the MIT license. Flatstrap (bootstrap) is licensed under the Apache License v2.0 and Angular.js is licensed under MIT.
DockerUI: Copyright (c) 2013 Michael Crosby. http://crosbymichael.com
Update credits:
Abhinav Ajgaonkar http://blog.abhinav.ca
Ryan Krieg http://ryankrieg.com
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
docker pull abh1nav/dockerui