Skip to content

1.11.2

Compare
Choose a tag to compare
@shin- shin- released this 22 Feb 00:02

If you're a Mac or Windows user, the best way to install Compose and keep it up-to-date is Docker for Mac and Windows.

Docker for Mac and Windows will automatically install the latest version of Docker Engine for you.

Alternatively, you can use the usual commands to install or upgrade Compose:

curl -L https://github.com/docker/compose/releases/download/1.11.2/docker-compose-`uname -s`-`uname -m` > /usr/local/bin/docker-compose
chmod +x /usr/local/bin/docker-compose

See the install docs for more install options and instructions.

Compose file format compatibility matrix

Compose file format Docker Engine
3.0 ; 3.1 1.13.0+
2.1 1.12.0+
2.0 1.10.0+
1.0 1.9.1+

Changes

Bugfixes

  • Fixed a bug that was preventing secrets configuration from being
    loaded properly
  • Fixed a bug where the docker-compose config command would fail
    if the config file contained secrets definitions
  • Fixed an issue where Compose on some linux distributions would
    pick up and load an outdated version of the requests library
  • Fixed an issue where socket-type files inside a build folder
    would cause docker-compose to crash when trying to build that
    service
  • Fixed an issue where recursive wildcard patterns ** were not being
    recognized in .dockerignore files.

Thanks to @dnephin for contributing to this release!