This repository has been archived by the owner on Oct 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Docker image tag(s) pushed:
Labels added to images:
|
Overview
Environment Variables (2 changes)
-BUGSNAG_APP_VERSION=
+BUGSNAG_APP_VERSION=latest
-BUGSNAG_RELEASE_STAGE=production
+BUGSNAG_RELEASE_STAGE=local
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin Labels (3 changes)
com.docker.desktop.extension.api.version=>= 0.2.3
com.docker.desktop.extension.icon=https://raw.githubusercontent.com/docker/volumes-backup-extension/main/icon.svg
com.docker.extension.additional-urls=[ {"title":"Support", "url":"https://github.com/docker/volumes-backup-extension/issues"} ]
com.docker.extension.categories=volumes
-com.docker.extension.changelog=<ul> <li>Fixed current image vulnerabilities (CVEs) using Docker Scout.</li> </ul>
+com.docker.extension.changelog=<ul> <li>Fix MUI missing license.</li> </ul>
com.docker.extension.detailed-description=<p><strong>The functionality in this extension is now available as a Beta feature in the Volumes tab in Docker Desktop versions 4.29.0 and later. This extension will be deprecated once the features are out of Beta.</strong> <a href='https://docs.docker.com/desktop/use-desktop/volumes/'>Learn more</a></p> <p>With Volumes Backup & Share you can easily create copies of your volumes and also share them with others through SSH or pushing them to a registry.</p> <h2 id=-features>✨ What can you do with this extension?</h2> <ul> <li>Export a volume:</li> <ul><li>To a compressed file in your local filesystem</li> <li>To an existing local image</li> <li>To a new local image</li> <li>To a new image in Docker Hub (or another registry)</li></ul> <li>Import data into a new container or into an existing container:</li> <ul><li>From a compressed file in your local filesystem</li> <li>From an existing image</li> <li>From an existing image in Docker Hub (or another registry)</li></ul> <li>Transfer a volume via SSH to another host that runs Docker Desktop or Docker engine.</li> <li>Clone, empty or delete a volume</li> </ul> <h2>Acknowledgements</h2> <ul> <li><a href="/BretFisher/docker-vackup">Vackup project by Bret Fisher</a></li> <li><a href="https://www.youtube.com/watch?v=BHKp7Sc3VVc">Building Vackup - LiveStream on YouTube</a></li> <ul>
com.docker.extension.publisher-url=https://www.docker.com/
com.docker.extension.screenshots=[ {"alt": "Home page - list of volumes", "url": "https://raw.githubusercontent.com/docker/volumes-backup-extension/main/docs/images/1-table.png"}, {"alt": "Import data into a new volume", "url": "https://raw.githubusercontent.com/docker/volumes-backup-extension/main/docs/images/2-import-new.png"}, {"alt": "Export volume dialog", "url": "https://raw.githubusercontent.com/docker/volumes-backup-extension/main/docs/images/3-export.png"}, {"alt": "Transfer volume to another host", "url": "https://raw.githubusercontent.com/docker/volumes-backup-extension/main/docs/images/4-transfer.png"}, {"alt": "Clone volume dialog", "url": "https://raw.githubusercontent.com/docker/volumes-backup-extension/main/docs/images/5-clone.png"}, {"alt": "Delete volume dialog", "url": "https://raw.githubusercontent.com/docker/volumes-backup-extension/main/docs/images/6-delete.png"} ]
org.opencontainers.image.description=Backup, clone, restore, and share Docker volumes effortlessly. Also available as a Beta feature in the Volumes tab in Docker Desktop version 4.29.0 and later. This extension will be soon deprecated.
-org.opencontainers.image.revision=e44e78a16e0f83dee010998c689af405ca0ce27c
-org.opencontainers.image.source=https://github.com/docker/volumes-backup-extension
org.opencontainers.image.title=Volumes Backup & Share
org.opencontainers.image.vendor=Docker Inc. Policies (1 improved, 1 worsened, 1 missing data)
Packages and Vulnerabilities (1 package changes and 0 vulnerability changes)
Changes for packages of type
|
Package | Versiondocker/volumes-backup-extension:latest |
Versiondocker/volumes-backup-extension:pr-132 |
|
---|---|---|---|
♾️ | stdlib | 1.21.9 |
go1.21.9 |
gtardif
force-pushed
the
fix_watermark
branch
2 times, most recently
from
April 26, 2024 08:44
2b5eaaa
to
dbee77a
Compare
gtardif
force-pushed
the
fix_watermark
branch
2 times, most recently
from
April 26, 2024 09:03
bd48b3c
to
3fce6d0
Compare
Signed-off-by: Guillaume Tardif <guillaume.tardif@gmail.com>
gtardif
requested review from
erusso7,
mat007,
maxcleme,
lorenrh,
gabolaev,
eugenenosenko and
chaizeg
April 26, 2024 09:25
maxcleme
approved these changes
Apr 26, 2024
chaizeg
reviewed
Apr 26, 2024
@@ -20,6 +20,8 @@ RUN --mount=type=cache,target=/usr/src/app/.npm \ | |||
npm ci | |||
# install | |||
COPY ui /ui | |||
# avoid reusing cached layers from another build without secrets provided, cf https://docs.docker.com/build/cache/invalidation/#build-secrets |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
TIL!
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Fix docker build caching issue with secrets. This is causing the extension to display a "missing license" watermark on the UI table
Building a first time without secrets (to export for scout) introduced some cached layers that are wrongly reused when building with secrets.
See known issue and fix
We can see in this build that the npm build using the secret is not using cache, that is already build in step "Build and export"