mcmah309 / containeryard

ContainerYard is a declarative, reproducible, and reusable decentralized approach for defining containers.
Apache License 2.0
52 stars 1 forks source link

Support Env Variables As Template Inputs #1

Closed mcmah309 closed 3 months ago

mcmah309 commented 3 months ago

Currently only user provided variables can be used as inputs to a module in yard.yaml

...

outputs:
  Containerfile:
    - base:
        version: "24.04"

Environment variables should be acceptable as well

...

outputs:
  Containerfile:
    - base:
        version: $VERSION
mcmah309 commented 3 months ago

Completed