leopardslab / dunner

Dunner is a task runner tool like Grunt but used Docker images like CircleCI do. You can define tasks and steps of the tasks in your `.dunner.yaml` file and then run these steps with `Dunner do taskname`
MIT License
66 stars 41 forks source link

Add ability to add ENV variables #2

Closed agentmilindu closed 5 years ago

agentmilindu commented 5 years ago

The users should be able to set ENV variables to the Docker containers from .dunner.yaml

- name: 'mesosphere/aws-cli'
  command: ['aws', 'elasticbeanstalk update-application --application-name myapp']
  envs: 
   - AWS_ACCESS_KEY_ID=8O7GO86F87GY
   - AWS_SECRET_ACCESS_KEY='767tg87to867TRI68ri76R87To867T8I6rbO87T&$@bo87Tbo87' 
   - AWS_DEFAULT_REGION=us-east1
ayushjn20 commented 5 years ago

I would like to work on it.

agentmilindu commented 5 years ago

FIxed with #43