This repository contains a Python3 script which we use internally as a microservice to get the latest image versions of various Docker images as a human readable version from Docker Hub.
- Python3 installation is required (Script is tested with version >= 3.11)
- Run
pip install -r requirements.txt
to install the python3 requirements
-
Define your images for which you need the information in the
services.json
file A example configuration could look like this:[ { "name": "linuxserver/bookstack" }, { "name": "nginx" }, { "name": "postgres" }, { "name": "rocketchat/rocket.chat" } ]
-
Make sure the script has the correct permissions:
chmod +x docker_image_scraper.py
-
Run the script:
python3 docker_image_scraper.py
-
A successful result in the
all_tags.json
could look like this, for example:{ "nginx": [ { "version": "1.25.4", "major": "1" }, { "version": "1.25.3", "major": "1" }, { "version": "1.25.2", "major": "1" }, { "version": "1.25.1", "major": "1" }, { "version": "1.25.0", "major": "1" } ], "postgres": [ { "version": "16.2", "major": "16" }, { "version": "16.1", "major": "16" }, { "version": "16.0", "major": "16" }, { "version": "16", "major": "16" }, { "version": "15.6", "major": "15" } ], "linuxserver/bookstack": [ { "version": "23.12.20240115", "major": "23" }, { "version": "23.12.20240108", "major": "23" }, { "version": "23.12.20231229", "major": "23" }, { "version": "23.12.2", "major": "23" }, { "version": "23.12.1", "major": "23" } ], "rocketchat/rocket.chat": [ { "version": "6.6.0", "major": "6" }, { "version": "6.5.3", "major": "6" }, { "version": "6.5.2", "major": "6" }, { "version": "6.5.1", "major": "6" }, { "version": "6.5.0", "major": "6" } ] }
There are currently two attributes for each image in the all_tags.json
output. The version
attribute describes the respective human-readable Docker image version found and major
indicates the major version on which the respective tag is based on.
One of the most important features we are planning to implement is an API interface to use the output from the script with other applications. The option to store the result in a .json file will remain in the future.
We are also planning to variablize stuff like how many versions it stores for a docker image.
See Contributing.
GPLv3