Hello.
Help set up so that Watchtower updates only the StorjNode container. I have them running in different Docker Compose stacks.
Here is the Watchtower code:
version: "3.7"
services:
watchtower:
container_name: watchtower
image: storjlabs/watchtower
environment:
- TZ=Europe/Moscow
- WATCHTOWER_LABEL_ENABLE
deploy:
labels:
com.centurylinklabs.watchtower.enable: "true"
volumes:
- /var/run/docker.sock:/var/run/docker.sock
restart: always
Here is the Storj coposer code:
version: "3.5"
services:
storj:
container_name: storagenode
image: storjlabs/storagenode:latest
ports:
- "28967:28967/udp"
- "28967:28967/tcp"
- 14002:14002
- 14003:7778
environment:
- TZ=Europe/Moscow
- STORAGE=500GB
deploy:
labels:
com.centurylinklabs.watchtower.enable: "true"
volumes:
- type: bind
source: /storj-iscsi/storage_ntfs/identity/storagenode
target: /app/identity
- type: bind
source: /storj-iscsi/storage_ntfs/storage
target: /app/config
- type: bind
source: /var/log/storjnode.log
target: /app/config/node.log
restart: always
For some reason, Watchtower skipped the latest version and did not update the container. What could be wrong?