Return to Repository
Infrastructure / Service April 16, 2026

WUD: Update Monitoring

Monitoring Docker image updates for all containers.

Staying Updated

WUD (What's Up Docker?) keeps track of container updates. It doesn't auto-update (I prefer manual control to avoid breaking things), but it notifies me when a new version is available on Docker Hub.

services:
  wud:
    image: fmartinou/whats-up-docker:latest
    container_name: wud
    restart: unless-stopped
    volumes:
      - "/var/run/docker.sock:/var/run/docker.sock"