release.md.tmpl 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  1. If you're a Mac or Windows user, the best way to install Compose and keep it up-to-date is **[Docker Desktop for Mac and Windows](https://www.docker.com/products/docker-desktop)**.
  2. Docker Desktop will automatically install the latest version of Docker Engine for you.
  3. Alternatively, you can use the usual commands to install or upgrade Compose:
  4. ```
  5. curl -L https://github.com/docker/compose/releases/download/{{version}}/docker-compose-`uname -s`-`uname -m` -o /usr/local/bin/docker-compose
  6. chmod +x /usr/local/bin/docker-compose
  7. ```
  8. See the [install docs](https://docs.docker.com/compose/install/) for more install options and instructions.
  9. ## Compose file format compatibility matrix
  10. | Compose file format | Docker Engine |
  11. | --- | --- |
  12. {% for engine, formats in compat_matrix.items() -%}
  13. | {% for format in formats %}{{format}}{% if not loop.last %}, {% endif %}{% endfor %} | {{engine}}+ |
  14. {% endfor -%}
  15. ## Changes
  16. {{changelog}}
  17. Thanks to {% for name in contributors %}@{{name}}{% if not loop.last %}, {% endif %}{% endfor %} for contributing to this release!
  18. ## Integrity check
  19. Binary name | SHA-256 sum
  20. | --- | --- |
  21. {% for filename, sha in integrity.items() -%}
  22. | `{{filename}}` | `{{sha[1]}}` |
  23. {% endfor -%}