From 10b2581772615610e322707fb94068a7fded5cbf Mon Sep 17 00:00:00 2001 From: Chris Addams Date: Thu, 15 Aug 2019 19:41:56 +0100 Subject: [PATCH] Update README to correct environment config original format: ```SLEEP_LENGTH: 1``` doesn't work, should be ```SLEEP_LENGTH=1``` --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 1835acb..cc0e0f9 100644 --- a/README.md +++ b/README.md @@ -53,7 +53,7 @@ By default, there will be a 2 second sleep time between each check. You can modi start_dependencies: image: dadarek/wait-for-dependencies environment: - - SLEEP_LENGTH: 0.5 + - SLEEP_LENGTH=0.5 ``` By default, there will be a 300 seconds timeout before cancelling the wait_for. You can modify this by setting the `TIMEOUT_LENGTH` environment variable: @@ -62,6 +62,6 @@ By default, there will be a 300 seconds timeout before cancelling the wait_for. start_dependencies: image: dadarek/wait-for-dependencies environment: - - SLEEP_LENGTH: 1 - - TIMEOUT_LENGTH: 60 + - SLEEP_LENGTH=1 + - TIMEOUT_LENGTH=60 ```