Are you a content docker user that created dockerfiles based off of public
ones? Maybe you created a website
image that depends on nginx
and also
adds some static content to it. This is neat and works quite well - but when
do you update it?
Existing tools like Watchtower or
Diun can only check for updates of
the running image - but you are not running nginx
, just something based off
of it! You need a way to get notified when the base image of yours is
updated. Enter Lighthouse.
Additionally to watching all containers for updates, Lighthouse also periodically inspects all running containers, extracts their image and the base image you provided as a label. It verifies the base image is up to date using the docker registry and then also verifies, that your container image is actually based on the most up-to-date version of the base image.
If Lighthouse detects that the local reference base image is outdated, it
will update the base image if you pass ----base-image-update pull_and_update
.
Otherwise it will always tell you that the container is outdated if your base
image is. If the container is based on an outdated image, it will notify you in
discord.
If Lighthouse finds a container without a lighthouse.base
label, it will try
to find updates for the container's image instead. This ensures containers
running images unchanged will also be checked for updates - even without any
special label.
If you do not want to check all containers for updates, you can set
Lighthouse to opt-in mode using the --require-label
flag. If it is set,
Lighthouse will only consider containers with the lighthouse.enabled=true
label.
The lighthouse.enabled
flag is absolute and not influenced by
--require-label
. If you set it to false
, the container will never be
checked. If you set it to true
, the container will always be checked.
To save you from many duplicate notifications, Lighthouse keeps an internal
database of all images it successfully notified you about. Unless you pass
the --notify-again
flag, Lighthouse will only notify you once per image.
It might be a good idea to mount the /data
directory in the container, so
this database is not lost when you recreate the container.
- Watch labeled containers
- Keep a reference copy of the container's base image up-to-date
- Notify you through a discord webhook if a container is based on an oudated base image
- Supports metadata (who and when updated the image?) for Docker Hub images
- Supports checking for updates for images from arbitrary registries (if they conform to standards and/or you have basic auth credentials for them in your config)
Watches for docker base image updates
USAGE
lighthouse [OPTIONS] URL|TOKEN
PARAMETERS
URL|TOKEN Discord webhook URL or discord bot token
OPTIONS
--check-times CRONTAB Check times in cron syntax (https://crontab.guru).
Default: '23 08 * * *'
--mention MENTION Discord mention (e.g. '<@userid>')
--mention-text TEXT Text to send in Discord
--docker-config PATH Path to docker config.
Default: /root/.docker/config.json
--hostname NAME The hostname to mention in notifications
--base-image-update STRATEGY Whether to 'only_pull_unknown' base images or 'pull_and_update' them
--require-label Ignore containers without 'lighthouse.enabled' label.
Default: false
--notify-again Notify you more than once about an image update.
Default: false
# For bot mode, ignore when using with a webhook URL
--bot-updater-docker-image IMAGE The name of the image to use for updating containers.
Default: 'library/docker'
--bot-updater-mount BOT-UPDATER-MOUNT The mounts for created updater containers
--bot-updater-entrypoint BOT-UPDATER-ENTRYPOINT The binary to call in the updater container
--bot-channel-id BOT-CHANNEL-ID The channel id the bot should send updates to
You also should set the lighthouse.instance
label on the lighthouse
container. This allows is to find itself and update itself last.
The mention text can include the placeholder {IMAGES}
which will be replaced
with a space-separated list of the images having updates available.
You can set the LOG_LEVEL
environment variable to DEBUG
to enable debug logging.
When passing a bot token instead of a webhook url, Lighthouse will act as a full-fledged discord bot. You can obtain a token by creating a bot on https://discord.com/developers/applications. When Lighthouse acts as a bot and a bot updater docker image was specified, Lighthouse will show an "Update" button in discord. Once pressed, it will update all base images and then start an updater docker container with the given image and pass it all outdated container names as arguments. The updater image can then automatically rebuild and restart all affected containers, allowing you to apply updates right after seeing the notification in discord.
Webhook mode
version: "3.9"
services:
lighthouse:
image: "ghcr.io/i-al-istannen/lighthouse:latest"
volumes:
# Lighthouse needs to talk to docker
- /var/run/docker.sock:/var/run/docker.sock
# Registry authentication is stored in the docker config.
# Mount through whatever config file you need.
- /root/.docker/config.json:/root/.docker/config.json
# Persist known image config, so you do not get notified
# multiple times for a single image, even if you recreate
# the container.
- data:/data
command:
# Include this name in the alert title
- '--hostname=Yggdrasil'
# Tag the user with id 12345678
- '--mention=<@12345678>'
# Include this text after the mention
- '--mention-text=I got some news!'
# Run every day at 06:13 (https://crontab.guru/#13_06_*_*_*)
- '--check-times=13 06 * * *'
# Post to this webhook
- 'https://discord.com/api/webhooks/.....'
restart: always
volumes:
data: {}
Bot mode
version: "3.9"
services:
lighthouse:
image: "ghcr.io/i-al-istannen/lighthouse:latest"
volumes:
# Lighthouse needs to talk to docker
- /var/run/docker.sock:/var/run/docker.sock
# Registry authentication is stored in the docker config.
# Mount through whatever config file you need.
- /root/.docker/config.json:/root/.docker/config.json
# Persist known image config, so you do not get notified
# multiple times for a single image, even if you recreate
# the container.
- data:/data
command:
# Include this name in the alert title
- '--hostname=Yggdrasil'
# Tag the user with id 12345678
- '--mention=<@12345678>'
# Include this text after the mention
- '--mention-text=I got some news!'
# Run every day at 06:13 (https://crontab.guru/#13_06_*_*_*)
- '--check-times=13 06 * * *'
# Use this bot token
- 'xxxxxxxxxxxxxxxxxxxxxxxx.xxxxxx.xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'
# The id of the channel the bot should send messages to
- '--bot-channel-id=926553453583532043'
# The script to run in the updater container
- '--bot-updater-entrypoint=/work/rebuild-container.sh'
# Use the docker image for the updater container (default)
- '--bot-updater-docker-image=docker'
# Mount the docker-compose files the updater container will rebuild into the
# updater container
- '--bot-updater-mount=/compose-files:/work'
# Mount the docker socket into the updater so it can use compose
- '--bot-updater-mount=/var/run/docker.sock:/var/run/docker.sock'
# Mount the docker daemon config into the updater so it can auth to registries
- '--bot-updater-mount=/root/.docker/config.json:/root/.docker/config.json'
restart: always
volumes:
data: {}
You also need to ensure you label all your derived containers with
lighthouse.base
, e.g. lighthouse.base=nginx:stable
.
If you are running a container unchanged (e.g. docker run nginx:stable
) you
don't need to do anything, unless you set Lighthouse to opt-in.
It might make sense to structure your dockerfiles in the following way:
FROM nginx:stable
LABEL lighthouse.base=nginx:stable
This ensures the lighthouse tag is always present and up to date.
Sadly, docker does no longer build a "Parent" chain, which makes it impossible to reliably find the correct base image. Therefore, Lighthouse requires you to tag containers with their base image.
The docker registry API allows you to check whether an image is up-to-date, but you have no idea what image version your container is based on! To combat this, Lighthouse always keeps a reference copy of the base images on hand and compares their layers with the layers of your container's image. If any layer is not present in your container, the base image likely was updated in the meantime.
An up-to-date base image must be available locally, as the registry only serves the hashes of gzip-encoded layers which can not be mapped to the decompressed layers in the container image. As updates are only checked against the local copy for this reason, the local copy needs to be up-to-date, which Lighthouse automatically manages for you.
Once an update is found, Lighthouse will fetch up-to-date image information from docker hub, to ensure the notification message is useful.
Logo based on Smashicons from www.flaticon.com