feat: allow skipping pulling an image for the redis plugin when REDIS_DISABLE_PULL=true

This commit is contained in:
Jody McIntyre
2018-03-27 12:58:40 -04:00
committed by Jose Diaz-Gonzalez
parent 258a1c9de5
commit 956e22962e
3 changed files with 17 additions and 0 deletions

View File

@@ -221,3 +221,9 @@ dokku redis:backup-auth lolipop AWS_ACCESS_KEY_ID AWS_SECRET_ACCESS_KEY AWS_REGI
# more specific example for minio auth
dokku redis:backup-auth lolipop MINIO_ACCESS_KEY_ID MINIO_SECRET_ACCESS_KEY us-east-1 s3v4 https://YOURMINIOSERVICE
```
## Disabling `docker pull` calls
If you wish to disable the `docker pull` calls that the plugin triggers, you may set the `REDIS_DISABLE_PULL` environment variable to `true`. Once disabled, you will need to pull the service image you wish to deploy as shown in the `stderr` output.
Please ensure the proper images are in place when `docker pull` is disabled.