This repository has been archived by the owner on Sep 10, 2020. It is now read-only.
v2.0.0
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