From f35347de14252140221c4e4a92ce613485983769 Mon Sep 17 00:00:00 2001 From: Simon Aronsson Date: Sun, 28 Apr 2019 15:44:40 +0200 Subject: [PATCH] feature/112: update readme and cli help --- README.md | 1 + app/app.go | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 5351b2e..c331b05 100644 --- a/README.md +++ b/README.md @@ -154,6 +154,7 @@ docker run --rm containrrr/watchtower --help - `--tlsverify` Use TLS when connecting to the Docker socket and verify the server's certificate. - `--debug` Enable debug mode. When this option is specified you'll see more verbose logging in the watchtower log file. - `--monitor-only` Will only monitor for new images, not update the containers. +- `--include-stopped` Will also include created and exited containers. - `--help` Show documentation about the supported flags. See below for options used to configure notifications. diff --git a/app/app.go b/app/app.go index 3757088..6a20e4f 100644 --- a/app/app.go +++ b/app/app.go @@ -161,7 +161,7 @@ func SetupCliFlags(app *cli.App) { }, cli.BoolFlag{ Name: "include-stopped", - Usage: "Will also include stopped or exited containers", + Usage: "Will also include created and exited containers", EnvVar: "WATCHTOWER_INCLUDE_STOPPED", }, }