Hi all,
I would like share advanced configuration of watchtower for SNO:
docker run -d \
    --restart=always \
    --name watchtower \
    -v /var/run/docker.sock:/var/run/docker.sock \
    -v /etc/ssl/certs:/etc/ssl/certs \
    -e WATCHTOWER_NOTIFICATIONS=email \
    -e WATCHTOWER_NOTIFICATION_EMAIL_FROM=Storj_v3_alpha@storj.odmin.example \
    -e WATCHTOWER_NOTIFICATION_EMAIL_TO=odmin@storj.odmin.example \
    -e WATCHTOWER_NOTIFICATION_EMAIL_SERVER=smtp.odmin.example \
    storjlabs/watchtower --debug --stop-timeout 300
This configuration will send email for you when update is comming and add to email some information from log.
smtp.odmin.example - it my local smtp server without autentification, if your smtp require autentification, please add addition options:
 --notification-email-server-user
 --notification-email-server-password
Also you can see all options using this command:
docker run --rm storjlabs/watchtower --help
here is sample output:
docker run --rm storjlabs/watchtower --help
NAME:
   watchtower - Automatically update running Docker containers
USAGE:
   watchtower [global options] command [command options] [arguments...]
VERSION:
   0.3.1 - 98f916f29a041ae045b1e7a7e5d05e6202c766f4 - 2019-04-04T20:55:23Z
COMMANDS:
     help, h  Shows a list of commands or help for one command
GLOBAL OPTIONS:
   --host value, -H value                       daemon socket to connect to (default: "unix:///var/run/docker.sock") [$DOCKER_HOST]
   --interval value, -i value                   poll interval (in seconds) (default: 300) [$WATCHTOWER_POLL_INTERVAL]
   --schedule value, -s value                   the cron expression which defines when to update [$WATCHTOWER_SCHEDULE]
   --no-pull                                    do not pull new images [$WATCHTOWER_NO_PULL]
   --no-restart                                 do not restart containers [$WATCHTOWER_NO_RESTART]
   --cleanup                                    remove old images after updating [$WATCHTOWER_CLEANUP]
   --tlsverify                                  use TLS and verify the remote [$DOCKER_TLS_VERIFY]
   --stop-timeout value                         timeout before container is forcefully stopped (default: 10s) [$WATCHTOWER_TIMEOUT]
   --label-enable                               watch containers where the com.centurylinklabs.watchtower.enable label is true [$WATCHTOWER_LABEL_ENABLE]
   --debug                                      enable debug mode with verbose logging
   --notifications value                        notification types to send (valid: email, slack, msteams) [$WATCHTOWER_NOTIFICATIONS]
   --notifications-level value                  The log level used for sending notifications. Possible values: "panic", "fatal", "error", "warn", "info" or "debug" (default: "info") [$WATCHTOWER_NOTIFICATIONS_LEVEL]
   --notification-email-from value              Address to send notification e-mails from [$WATCHTOWER_NOTIFICATION_EMAIL_FROM]
   --notification-email-to value                Address to send notification e-mails to [$WATCHTOWER_NOTIFICATION_EMAIL_TO]
   --notification-email-server value            SMTP server to send notification e-mails through [$WATCHTOWER_NOTIFICATION_EMAIL_SERVER]
   --notification-email-server-port value       SMTP server port to send notification e-mails through (default: 25) [$WATCHTOWER_NOTIFICATION_EMAIL_SERVER_PORT]
   --notification-email-server-tls-skip-verify  Controls whether watchtower verifies the SMTP server's certificate chain and host name. If set, TLS accepts any certificate presented by the server and any host name in that certificate. In this mode, TLS is susceptible to man-in-the-middle attacks. This should be used only for testing. [$WATCHTOWER_NOTIFICATION_EMAIL_SERVER_TLS_SKIP_VERIFY]
   --notification-email-server-user value       SMTP server user for sending notifications [$WATCHTOWER_NOTIFICATION_EMAIL_SERVER_USER]
   --notification-email-server-password value   SMTP server password for sending notifications [$WATCHTOWER_NOTIFICATION_EMAIL_SERVER_PASSWORD]
   --notification-slack-hook-url value          The Slack Hook URL to send notifications to [$WATCHTOWER_NOTIFICATION_SLACK_HOOK_URL]
   --notification-slack-identifier value        A string which will be used to identify the messages coming from this watchtower instance. Default if omitted is "watchtower" (default: "watchtower") [$WATCHTOWER_NOTIFICATION_SLACK_IDENTIFIER]
   --notification-msteams-hook value            The MSTeams WebHook URL to send notifications to [$WATCHTOWER_NOTIFICATION_MSTEAMS_HOOK_URL]
   --notification-msteams-data                  The MSTeams notifier will try to extract log entry fields as MSTeams message facts [$WATCHTOWER_NOTIFICATION_MSTEAMS_USE_LOG_DATA]
   --help, -h                                   show help
   --version, -v                                print the version
Here is sample text of email:
2019-06-25 16:24:37 (info): Found new storjlabs/storagenode:alpha image (sha256:904c30b6704b493c5fd5d4625e25d2cac0b27689c48b22cc741e93a73cd36cc7)
2019-06-25 16:24:39 (info): Stopping /storagenode (49f91eb2b2faed09944e2ee2d1c8633fa2387cdad9aa601591052d0a4bdb86cd) with SIGTERM
2019-06-25 16:25:00 (info): Creating /storagenode
