Skip to content
Snippets Groups Projects
Commit b5f3ddbf authored by Hugo Beauzée-Luyssen's avatar Hugo Beauzée-Luyssen
Browse files

Add get-docker-tags.sh

parent 8fc52113
Branches native_menus
No related tags found
No related merge requests found
......@@ -9,6 +9,8 @@ be rebuilt.
The results will be available on VideoLAN docker registry under
registry.videolan.org/$tag.
You can list the available tags for a given image by using get-docker-tags.sh image-name
If you require a new Linux distro to be a base of your future image(-s), please
put it under videolan-base-$distro directory.
......
#!/bin/sh
if [ "$#" -lt 1 ]; then
echo "usage: $0 <image_name>";
fi
curl https://registry.videolan.org/v2/$1/tags/list | jq '.tags |= sort_by(.)'
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment