Running 2 Nodes on Linux Docker, How to set Auto-updater?

In linux docker, the upgrade command is:

sudo docker run -d --restart=always --name watchtower -v /var/run/docker.sock:/var/run/docker.sock storjlabs/watchtower storagenode watchtower --stop-timeout 300s --interval 21600

If I am running 2 nodes in the same machine, say : storagenode and storagenode2, that means I have to run 2 watchtower as well right? What is the proper command for the 2nd watchtower?

sudo docker run -d --restart=always --name watchtower -v /var/run/docker.sock:/var/run/docker.sock storjlabs/watchtower storagenode2 watchtower2 --stop-timeout 300s --interval 21600

Is this correct?

2 posts were merged into an existing topic: Multi node watchtower update setup