ReadOnly

Allow the request if is read-only. ie: method of the docker API is of type GET or HEAD.

Example usage

policies.yml
---

- description: Allow only read-only actions.
  hosts:
    - +.*
  default: Deny
  policies:
    - members:
        - all
      rules:
        any:
          ReadOnly:

...