-
Notifications
You must be signed in to change notification settings - Fork 117
Description
Hello, see below for my what's up docker docker-compose.yml, entered in Portainer:
volumes:
wud-app:
driver: local
driver_opts:
type: nfs
o: addr=10.0.0.253,rw,vers=4.1
device: ":/mnt/tank/Docker/config/wud/"
services:
app:
image: fmartinou/whats-up-docker:latest
restart: always
logging:
driver: "json-file"
options:
max-size: "100m"
max-file: "5"
volumes:
- /var/run/docker.sock:/var/run/docker.sock # To monitor local containers
- wud-app:/store
environment:
- TZ=America/Detroit
# --- WATCHER CONFIGURATION ---
- WUD_WATCHER_LOCAL_CRON=*/5 * * * *
# --- TRIGGER CONFIGURATION ---
- WUD_TRIGGER_DOCKER_LOCAL_PRUNE=true
- WUD_TRIGGER_DOCKER_LOCAL_AUTO=false
networks:
- proxy
labels:
# WUD can even watch itself!
- "wud.tag.include=^latest$$"
networks:
proxy:
external: true
When I deploy What's up Docker, I get the following error:
WARN whats-up-docker/registry: Some triggers failed to register (Error when registering component docker ("auto" is not allowed))
Am I missing something? AUTO is a common trigger method listed in the Docs. I do not want automatic updates, I want to manually trigger an update from the web interface using the run button.