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

Commit

Permalink
upgrade to docker-compose 1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
francescou committed Aug 23, 2015
1 parent 65a8370 commit be6dce1
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion requirements.txt
@@ -1,2 +1,2 @@
Flask==0.10.1
docker-compose==1.3.3
docker-compose==1.4.0
9 changes: 5 additions & 4 deletions scripts/bridge.py
Expand Up @@ -2,8 +2,9 @@
bridge to docker-compose
"""

from compose.cli.main import TopLevelCommand
from compose.cli.command import Command
from compose.container import Container
from compose.config import get_config_path

import logging

Expand Down Expand Up @@ -51,7 +52,7 @@ def get_project(path):
get docker project given file path
"""
logging.debug('get project ' + path)
command = TopLevelCommand()
command.base_dir = path
project = command.get_project(command.get_config_path())
command = Command()
config_path = get_config_path(path)
project = command.get_project(config_path)
return project
2 changes: 1 addition & 1 deletion static/index.html
Expand Up @@ -16,7 +16,7 @@
<body ng-app="composeUiApp">

<div class="container" ng-controller="MainCtrl">
<h1 class="text-center">Docker Compose UI v.0.7</h1>
<h1 class="text-center">Docker Compose UI v.0.8</h1>

<div class="row text-center">
<div class="col-md-4">
Expand Down

0 comments on commit be6dce1

Please sign in to comment.