From 0f05a8228442fd4157df89dfb44d455fb2e9561e Mon Sep 17 00:00:00 2001 From: Giancarlo Razzolini Date: Thu, 30 May 2019 17:17:07 -0300 Subject: [PATCH] Add a configuration handle for receiving the URL for the callback --- app/app.go | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app/app.go b/app/app.go index 6a20e4f..91a5adf 100644 --- a/app/app.go +++ b/app/app.go @@ -164,5 +164,10 @@ func SetupCliFlags(app *cli.App) { Usage: "Will also include created and exited containers", EnvVar: "WATCHTOWER_INCLUDE_STOPPED", }, + cli.BoolFlag{ + Name: "url-callback", + Usage: "URL to callback for out of band updating", + EnvVar: "WATCHTOWER_URL_CALLBACK", + }, } }