Skip to content

How to setup WhatsUpDocker (with Docker & Caddy)

Untested

Description

What’s Up Docker (WUD) is a free, open-source, self-hostable tool designed to simplify Docker container maintenance by monitoring image updates.

Docker

  1. Add the wud section to your docker-compose.yml file:

      whatsupdocker:
        image: getwhatsupdocker/whatsupdocker
        container_name: wud
        environment:
          - TZ=Europe/Bucharest
        volumes:
          - /var/run/docker.sock:/var/run/docker.sock
        ports:
          - 3007:3000
        restart: unless-stopped
    
  2. Download and start wud:

    docker compose up -d wud
    

Try it out

See if you can access the WUD web interface at http://server_ip:3007.

Troubleshooting

If it doesn't work, see the troubleshooting guide.

Official site

Github page