mirror of https://github.com/docker/compose.git
commit
9ab8f358ca
|
@ -1,6 +1,15 @@
|
||||||
Change log
|
Change log
|
||||||
==========
|
==========
|
||||||
|
|
||||||
|
0.5.1 (2014-07-11)
|
||||||
|
------------------
|
||||||
|
|
||||||
|
- If a service has a command defined, `fig run [service]` with no further arguments will run it.
|
||||||
|
- The project name now defaults to the directory containing fig.yml, not the current working directory (if they're different)
|
||||||
|
- `volumes_from` now works properly with containers as well as services
|
||||||
|
- Fixed a race condition when recreating containers in `fig up`
|
||||||
|
|
||||||
|
|
||||||
0.5.0 (2014-07-11)
|
0.5.0 (2014-07-11)
|
||||||
------------------
|
------------------
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
from __future__ import unicode_literals
|
from __future__ import unicode_literals
|
||||||
from .service import Service
|
from .service import Service
|
||||||
|
|
||||||
__version__ = '0.5.0'
|
__version__ = '0.5.1'
|
||||||
|
|
Loading…
Reference in New Issue