mirror of
https://github.com/hoppscotch/hoppscotch.git
synced 2026-04-26 01:06:00 +03:00
[GH-ISSUE #722] Add docker Images for all Tags #251
Labels
No labels
CodeDay
a11y
browser limited
bug
bug fix
cli
core
critical
design
desktop
discussion
docker
documentation
duplicate
enterprise
feature
feature
fosshack
future
good first issue
hacktoberfest
help wanted
i18n
invalid
major
minor
need information
need testing
not applicable to hoppscotch
not reproducible
pull-request
question
refactor
resolved
sandbox
self-host
spam
stale
testmu
wip
wont fix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/hoppscotch#251
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @JanoschDeurer on GitHub (Mar 30, 2020).
Original GitHub issue: https://github.com/hoppscotch/hoppscotch/issues/722
Is your feature request related to a problem? Please describe.
I try to always use version pinning in docker-compose for all docker images. This ensures that when a problem occurs I can go back by playing back my backup.
Describe the solution you'd like
It would be great to have docker tags for all the git tags.
@liyasthomas commented on GitHub (Mar 30, 2020):
@JanoschDeurer I'm a noob at docker stuffs. Can you help me resolve this issue?
@JanoschDeurer commented on GitHub (Mar 30, 2020):
Yes, gladly, actually Dockerhub has a rather nice integration for this. If you click on your Docker repository and then on the
Buildstab you can click onConfigure Automated Builds. In the section for Build Rules you can configure additional rules. In your case the rule would be:Tag/^v[0-9.]+$/{sourceref}Dockerfile/It will the build automatically when a new tag is pushed that matches the regex in Source. For the existing tags it will not run a build.
@liyasthomas commented on GitHub (Mar 31, 2020):
Done! Thanks for the help.
@JanoschDeurer commented on GitHub (Mar 31, 2020):
Nice, thanks :) If you ever need any other help with Docker just let me know.