Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,19 @@ Each value of the object is another object with the following possible keys:
* Generate run arguments from container options.
* Call `docker run` with arguments.

## How to avoid user prompts

Simply set the following two environment variables:
* IMAGE - string, the name of the image to build
* PUSH - int, enter '1' for auto push

You can set these in your Gulp task like so:
```
process.env.IMAGE = 'Image name here';
process.env.PUSH = 1;
```
or whereever you set your other environment variables.

## Dev setup

npm install
Expand Down