Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
D
docker-images
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Thomas Guillem
docker-images
Commits
b5f3ddbf
Commit
b5f3ddbf
authored
4 years ago
by
Hugo Beauzée-Luyssen
Browse files
Options
Downloads
Patches
Plain Diff
Add get-docker-tags.sh
parent
8fc52113
Branches
native_menus
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
README.md
+2
-0
2 additions, 0 deletions
README.md
get-docker-tags.sh
+6
-0
6 additions, 0 deletions
get-docker-tags.sh
with
8 additions
and
0 deletions
README.md
+
2
−
0
View file @
b5f3ddbf
...
...
@@ -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.
...
...
This diff is collapsed.
Click to expand it.
get-docker-tags.sh
0 → 100755
+
6
−
0
View file @
b5f3ddbf
#!/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(.)'
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment