Codebase list docker-compose / 95cf195
Bump 1.3.2 Signed-off-by: Aanand Prasad <aanand.prasad@gmail.com> Aanand Prasad 8 years ago
3 changed file(s) with 17 addition(s) and 2 deletion(s). Raw diff Collapse all Expand all
00 Change log
11 ==========
2
3 1.3.2 (2015-07-14)
4 ------------------
5
6 The following bugs have been fixed:
7
8 - When there were one-off containers created by running `docker-compose run` on an older version of Compose, `docker-compose run` would fail with a name collision. Compose now shows an error if you have leftover containers of this type lying around, and tells you how to remove them.
9 - Compose was not reading Docker authentication config files created in the new location, `~/docker/config.json`, and authentication against private registries would therefore fail.
10 - When a container had a pseudo-TTY attached, its output in `docker-compose up` would be truncated.
11 - `docker-compose up --x-smart-recreate` would sometimes fail when an image tag was updated.
12 - `docker-compose up` would sometimes create two containers with the same numeric suffix.
13 - `docker-compose rm` and `docker-compose ps` would sometimes list services that aren't part of the current project (though no containers were erroneously removed).
14 - Some `docker-compose` commands would not show an error if invalid service names were passed in.
15
16 Thanks @dano, @josephpage, @kevinsimper, @lieryan, @phemmer, @soulrebel and @sschepens!
217
318 1.3.1 (2015-06-21)
419 ------------------
00 from __future__ import unicode_literals
11
2 __version__ = '1.3.1'
2 __version__ = '1.3.2'
2626
2727 To install Compose, run the following commands:
2828
29 curl -L https://github.com/docker/compose/releases/download/1.3.1/docker-compose-`uname -s`-`uname -m` > /usr/local/bin/docker-compose
29 curl -L https://github.com/docker/compose/releases/download/1.3.2/docker-compose-`uname -s`-`uname -m` > /usr/local/bin/docker-compose
3030 chmod +x /usr/local/bin/docker-compose
3131
3232 > Note: If you get a "Permission denied" error, your `/usr/local/bin` directory probably isn't writable and you'll need to install Compose as the superuser. Run `sudo -i`, then the two commands above, then `exit`.