Skip to content

Commit 4da7b0d

Browse files
author
Felix Garcia Borrego
committed
Update README and minor changes.
1 parent 1127c72 commit 4da7b0d

File tree

5 files changed

+22
-12
lines changed

5 files changed

+22
-12
lines changed

README.md

Lines changed: 22 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2,25 +2,36 @@
22

33
Simple Docker UI for Chrome is an unofficial developer tool for monitoring and managing your local Docker containers.
44

5-
<a target="_blank" href="https://chrome.google.com/webstore/detail/jfaelnolkgonnjdlkfokjadedkacbnib/publish-accepted-testers">
5+
<a target="_blank" href="https://chrome.google.com/webstore/detail/jfaelnolkgonnjdlkfokjadedkacbnib">
66
<img alt="Try it now" src="https://raw.github.com/GoogleChrome/chrome-app-samples/master/tryitnowbutton_small.png" title="Click here to install this app from the Chrome Web Store"></img>
77
</a>
88

9-
Note: This is a developer preview version of the Docker UI. I'm actively working to add features based on your feedback!
9+
10+
This app uses Docker Remote Api.
11+
Please note this is a beta version and only provides a basic set of features.
12+
I'm actively working to add new features and bug fixing.
13+
Any feedback is more than welcome!
14+
15+
[![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/felixgborrego/docker-ui-chrome-app)
16+
17+
![Home](docs/screenshots/home.png)
18+
19+
![Container](docs/screenshots/container.png)
20+
21+
![Image](docs/screenshots/container.png)
22+
23+
[Video Example](https://youtu.be/x6RVTHp5M7w)
1024

1125
### Get Started
1226

1327
This app uses Docker Remote Api, so you'll need to enable the Docker Remote Api to allow http or https connections.
1428

15-
1629
### Stack
1730

18-
Scala.js
19-
React.js
20-
Bootstrap
21-
bower
22-
momentjs
23-
Chrome packaged app framework
31+
* [Scala.js](http://www.scala-js.org/)
32+
* [React on Scala.js](https://github.com/japgolly/scalajs-react)
33+
* Bootstrap
34+
* Bower
35+
* Momentjs
36+
* Chrome packaged app framework
2437

25-
### TODO
26-

docs/screenshots/container.png

180 KB
Loading

docs/screenshots/home.png

148 KB
Loading

docs/screenshots/image_run.png

153 KB
Loading

src/main/scala/api/DockerClient.scala

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,6 @@ case class DockerClient(connection: Connection) {
169169
log.info("[dockerClient.events]")
170170
// the stream is an array but without [ ]
171171
val events = xhr.responseText.split("}").map(_ + "}")
172-
println("1 " + events.length)
173172
read[Seq[DockerEvent]](events.mkString("[", ", ", "]")).reverse
174173
}
175174
}

0 commit comments

Comments
 (0)