Update
Release rolling / release (push) Has been cancelled

This commit is contained in:
Raven Scott
2026-07-15 15:08:55 -04:00
parent a6925d337e
commit 53e6dd8853
10 changed files with 17 additions and 17 deletions
+2 -2
View File
@@ -180,7 +180,7 @@ export function registerContainerHandlers(session) {
})
/**
* Portainer-style image update check:
* style image update check:
* compare local RepoDigest(s) to remote registry manifest digest for the same tag.
*/
session.respond('checkImageUpdates', async (args = {}) => {
@@ -643,7 +643,7 @@ export function registerContainerHandlers(session) {
})
/**
* Recreate container with the same config (Portainer-style).
* Recreate container with the same config (style).
* Stops/removes the old container, creates a new one with the same name, starts if it was running.
*/
session.respond('recreateContainer', async (args) => {
+1 -1
View File
@@ -64,7 +64,7 @@ export function registerSystemHandlers(session) {
})
/**
* Docker system prune (Portainer-style "clean unused data").
* Docker system prune (style "clean unused data").
* @param {{ volumes?: boolean, all?: boolean }} args
*/
session.respond('systemPrune', async (args = {}) => {
+1 -1
View File
@@ -1,5 +1,5 @@
/**
* Image update detection (Portainer-style).
* Image update detection (style).
*
* Compares the first local RepoDigest for an image:tag with the remote
* registry manifest digest. Differing digests → update available.