-
Notifications
You must be signed in to change notification settings - Fork 698
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge latest from master and bump version to 0.9.0.
- Loading branch information
Showing
8 changed files
with
38 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "dockerui", | ||
"version": "0.9.0-beta", | ||
"version": "0.9.0", | ||
"homepage": "https://github.com/crosbymichael/dockerui", | ||
"authors": [ | ||
"Michael Crosby <[email protected]>", | ||
|
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
FROM debian | ||
|
||
RUN apt-get update && apt-get install -y socat |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# DockerUI with Swarm | ||
|
||
This example works with swarm clusters created with docker-machine. | ||
|
||
## Usage | ||
|
||
Make sure your client is pointed directly to the Docker daemon on the swarm-master's node (not through swarm). | ||
|
||
``` | ||
docker-compose up -d | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
dockerui: | ||
image: dockerui/dockerui | ||
command: -e http://127.0.0.1:2375 | ||
net: "host" | ||
|
||
socat: | ||
build: . | ||
net: "host" | ||
command: socat -d -d TCP-L:2375,fork,bind=localhost ssl:127.0.0.1:3376,cert=/var/lib/boot2docker/server.pem,cafile=/var/lib/boot2docker/ca.pem,key=/var/lib/boot2docker/server-key.pem | ||
volumes: | ||
- /var/lib/boot2docker:/var/lib/boot2docker |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
"author": "Michael Crosby & Kevan Ahlquist", | ||
"name": "dockerui", | ||
"homepage": "https://github.com/crosbymichael/dockerui", | ||
"version": "0.9.0-beta", | ||
"version": "0.9.0", | ||
"repository": { | ||
"type": "git", | ||
"url": "[email protected]:crosbymichael/dockerui.git" | ||
|