Codebase list docker-compose / 38af513
Bump 1.13.0-rc1 Signed-off-by: Joffrey F <joffrey@docker.com> Joffrey F 7 years ago
3 changed file(s) with 50 addition(s) and 3 deletion(s). Raw diff Collapse all Expand all
00 Change log
11 ==========
22
3 1.13.0 (2017-05-01)
4 -------------------
5
6 ### Breaking changes
7
8 - `docker-compose up` now resets a service's scaling to its default value.
9 You can use the newly introduced `--scale` option to specify a custom
10 scale value
11
12 ### New features
13
14 #### Compose file version 2.2
15
16 - Introduced version 2.2 of the `docker-compose.yml` specification. This
17 version requires to be used with Docker Engine 1.13.0 or above
18
19 - Added support for `init` in service definitions.
20
21 - Added support for `scale` in service definitions. The configuration's value
22 can be overridden using the `--scale` flag in `docker-compose up`.
23 Please note that the `scale` command is disabled for this file format
24
25 #### Compose file version 2.x
26
27 - Added support for `options` in the `ipam` section of network definitions
28
29 ### Bugfixes
30
31 - Fixed a bug where paths provided to compose via the `-f` option were not
32 being resolved properly
33
34 - Fixed a bug where the `ext_ip::target_port` notation in the ports section
35 was incorrectly marked as invalid
36
37 - Fixed an issue where the `exec` command would sometimes not return control
38 to the terminal when using the `-d` flag
39
40 - Fixed a bug where secrets were missing from the output of the `config`
41 command for v3.2 files
42
43 - Fixed an issue where `docker-compose` would hang if no internet connection
44 was available
45
46 - Fixed an issue where paths containing unicode characters passed via the `-f`
47 flag were causing Compose to crash
48
49
350 1.12.0 (2017-04-04)
451 -------------------
552
754
855 #### Compose file version 3.2
956
10 - Introduced version 3.2 of the `docker-compose.yml` specification.
57 - Introduced version 3.2 of the `docker-compose.yml` specification
1158
1259 - Added support for `cache_from` in the `build` section of services
1360
00 from __future__ import absolute_import
11 from __future__ import unicode_literals
22
3 __version__ = '1.13.0dev'
3 __version__ = '1.13.0-rc1'
1414
1515 set -e
1616
17 VERSION="1.12.0dev"
17 VERSION="1.13.0-rc1"
1818 IMAGE="docker/compose:$VERSION"
1919
2020