Skip to content

v0.2.0

Latest
Compare
Choose a tag to compare
@cdrage cdrage released this 29 May 18:23
· 30 commits to master since this release

The second official release of OpenCompose!

There's been 16 commits since the last release, let's see what's changed!

Volume key:

We've added volume support to OpenCompose. You can now supply a volume connected to your container.

For example:

version: "0.1-dev"

services:
- name: database
  containers:
  - image: mariadb:10
    mounts:
    - volumeRef: database
      mountPath: /var/lib/mysql

volumes:
- name: database
  size: 100Mi
  accessMode: ReadWriteOnce

Label key:

Labels can now be applied to each service.

For example:

version: "0.1-dev"

services:
- name: database
  labels:
    foo_label: bar_label
  ...

A more in-depth overview on all the keys can be located in our file reference doc.

Major changes:

  • Environment value validation #140
  • Volume support #88 #79
  • Service labels #82

Thanks to all who've contributed to this month's release!