Skip to content
This repository has been archived by the owner on Sep 10, 2020. It is now read-only.

v2.0.0

Compare
Choose a tag to compare
@stackhead-bot stackhead-bot released this 30 Apr 12:49
· 5 commits to master since this release

2.0.0 (2020-04-30)

Bug Fixes

  • add newline before validation errors (93a86dc)

Features

  • docker: add "registries" setting (cbfb6e3)
  • change format of volume setting (8bd25f9)
  • change service definition structure (19ab475)
  • docker: support user setting in services (1d00750)
  • docker: support volumes_from setting in services (6d125cd)

BREAKING CHANGES

  • Docker services are now an array instead of a dict/hash.
    Adjust your YAML file by moving the hash key into a new property "name"

Before:

services:
  myservice:
    image: myimage

After:

services:
  - name: myservice
    image: myimage

  • Adjust format of volumes in project definitions.

Before:
volumes:

  • /source/dir:/target/dir:ro

Now:
volumes:

  • type: custom
    src: /source/dir
    dest: /target/dir
    mode: ro