Adjust flags

pull/470/head
Maximilian Brandau 5 years ago
parent 2b21bd46be
commit 59ce378a35
No known key found for this signature in database
GPG Key ID: 6CBA8C2AC22BA157

@ -121,7 +121,7 @@ docker run -d \
To send notifications via shoutrrr, the following command-line options, or their corresponding environment variables, can be set: To send notifications via shoutrrr, the following command-line options, or their corresponding environment variables, can be set:
- `--notification-shoutrrr-url` (env. `WATCHTOWER_NOTIFICATION_SHOUTRRR_URL`): The shoutrrr service URL to be used. - `--notification-url` (env. `WATCHTOWER_NOTIFICATION_URL`): The shoutrrr service URL to be used.
Go to [https://github.com/containrrr/shoutrrr#service-urls](https://github.com/containrrr/shoutrrr#service-urls) to learn more about the different service URLs you can use. Go to [https://github.com/containrrr/shoutrrr#service-urls](https://github.com/containrrr/shoutrrr#service-urls) to learn more about the different service URLs you can use.
@ -132,7 +132,7 @@ docker run -d \
--name watchtower \ --name watchtower \
-v /var/run/docker.sock:/var/run/docker.sock \ -v /var/run/docker.sock:/var/run/docker.sock \
-e WATCHTOWER_NOTIFICATIONS=shoutrrr \ -e WATCHTOWER_NOTIFICATIONS=shoutrrr \
-e WATCHTOWER_NOTIFICATION_SHOUTRRR_URL=discord://channel/token \ -e WATCHTOWER_NOTIFICATION_URL=discord://channel/token \
-e WATCHTOWER_NOTIFICATION_SHOUTRRR_URL=slack://watchtower@token-a/token-b/token-c \ -e WATCHTOWER_NOTIFICATION_URL=slack://watchtower@token-a/token-b/token-c \
containrrr/watchtower containrrr/watchtower
``` ```

@ -240,9 +240,9 @@ Should only be used for testing.
"The Gotify Application required to query the Gotify API") "The Gotify Application required to query the Gotify API")
flags.StringArrayP( flags.StringArrayP(
"notification-shoutrrr-url", "notification-url",
"", "",
viper.GetStringSlice("WATCHTOWER_NOTIFICATION_SHOUTRRR_URL"), viper.GetStringSlice("WATCHTOWER_NOTIFICATION_URL"),
"The shoutrrr URL to send notifications to") "The shoutrrr URL to send notifications to")
} }

@ -22,7 +22,7 @@ type shoutrrrTypeNotifier struct {
func newShoutrrrNotifier(c *cobra.Command, acceptedLogLevels []log.Level) t.Notifier { func newShoutrrrNotifier(c *cobra.Command, acceptedLogLevels []log.Level) t.Notifier {
flags := c.PersistentFlags() flags := c.PersistentFlags()
urls, _ := flags.GetStringArray("notification-shoutrrr-url") urls, _ := flags.GetStringArray("notification-url")
n := &shoutrrrTypeNotifier{ n := &shoutrrrTypeNotifier{
Urls: urls, Urls: urls,

Loading…
Cancel
Save