Files
dvdash/README.md
Joe Monk a463e61fb4
All checks were successful
Build and deploy / deploy (push) Successful in 1m15s
Update readme
2025-09-06 16:44:30 +01:00

1.2 KiB

DVDash

A little dashboard for checking the latest versions of running docker containers.
Uses dockerode to check running containers, grab their images and then uses regctl to handle the connection to any registry to get the latest semver version for the image if found.
I used regctl because it turns out loads of docker registries do not follow the OCI spec and that tool just deals with it for me.

How do I deploy this?

This just runs on port 3000 and needs the docker socket as read only.

  dvdash:
    container_name: dvdash
    image: gitea.home.joemonk.co.uk/joe/dvdash:1
    restart: unless-stopped
    volumes:
      - /var/run/docker.sock:/var/run/docker.sock:ro
    ports:
      3000:3000

Create T3 App

This is a T3 Stack project bootstrapped with create-t3-app (because I'm comfortable with it and wanted to build a very small application very quickly).

Learn More