Skip to content
This repository has been archived by the owner on Nov 20, 2020. It is now read-only.

Commit

Permalink
Merge pull request #17 from francescou/compose-1.6.0
Browse files Browse the repository at this point in the history
Compose 1.6.0
  • Loading branch information
francescou committed Feb 6, 2016
2 parents fff61a5 + 5c0db24 commit 45d5ced
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 10 deletions.
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -25,7 +25,7 @@ Run the following command in terminal:
--name docker-compose-ui \
-p 5000:5000 \
-v /var/run/docker.sock:/var/run/docker.sock \
francescou/docker-compose-ui:0.12
francescou/docker-compose-ui:0.13

You have to wait while Docker pulls the container from the Docker Hub: https://registry.hub.docker.com/u/francescou/docker-compose-ui

Expand All @@ -44,7 +44,7 @@ If you want to use your own docker-compose projects, put them into a directory *
-p 5000:5000 \
-v /home/user/docker-compose-ui/demo-projects:/opt/docker-compose-projects:ro \
-v /var/run/docker.sock:/var/run/docker.sock \
francescou/docker-compose-ui:0.12
francescou/docker-compose-ui:0.13

you can download my example projects into */home/user/docker-compose-ui/demo-projects/* from https://github.com/francescou/docker-compose-ui/tree/master/demo-projects

Expand All @@ -68,7 +68,7 @@ You can also run containers on a remote docker host, e.g.
-p 5000:5000 \
-v /home/user/docker-compose-ui/demo-projects:/opt/docker-compose-projects:ro \
-e DOCKER_HOST=remote-docker-host:2375 \
francescou/docker-compose-ui:0.12
francescou/docker-compose-ui:0.13


### Docker Swarm or HTTPS Remote docker host
Expand Down
6 changes: 3 additions & 3 deletions static/index.html
Expand Up @@ -7,11 +7,11 @@
<meta name="viewport" content="width=device-width">

<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.4/css/bootstrap.min.css" />
<link rel="stylesheet" href="styles/main.css">
<link rel="stylesheet" href="styles/colors.css">
<link rel="stylesheet" href="https://rawgithub.com/fabien-d/alertify.js/0.3.11/themes/alertify.core.css">
<link rel="stylesheet" href="https://rawgithub.com/fabien-d/alertify.js/0.3.11/themes/alertify.default.css">
<link rel="stylesheet" href="https://rawgithub.com/designmodo/Flat-UI/2.2.2/dist/css/flat-ui.min.css">
<link rel="stylesheet" href="styles/main.css">
<link rel="stylesheet" href="styles/colors.css">
</head>
<body ng-app="composeUiApp">

Expand Down Expand Up @@ -51,7 +51,7 @@ <h3>Projects</h3>
<footer class="text-center">
<small class="text-muted"><a
href="https://github.com/francescou/docker-compose-ui">Docker
Compose UI v.0.12</a> Licensed under the MIT license.</small>
Compose UI v.0.13</a> Licensed under the MIT license.</small>
</footer>
</div>

Expand Down
14 changes: 10 additions & 4 deletions static/styles/main.css
@@ -1,7 +1,3 @@
body {
background-color: #F9F9F9;
}

.logs{
max-height: 500px;
display: block;
Expand Down Expand Up @@ -95,4 +91,14 @@ footer {

.search-items {
margin-top: 10px;
}

.btn-default {
background-color: #869198;
}
.btn-default:active, .btn-default.active {
background: #6d7377;
}
.btn-default:hover, .btn-default.hover {
background: #939da3;
}

0 comments on commit 45d5ced

Please sign in to comment.