Currently one can add an app-specific environment like so:
# ...
apps:
my-app:
command: foo
environment:
FOO: BAR
One can implement a global environment, which will affect apps and hooks:
# ...
environment:
FOO: BAR
apps:
my-app:
command: echo "$FOO"
hooks:
configure:
However, there is no support for a hook-specific environment. Is there a reason for this, or is it an oversight?