diff options
author | Romain GARBAGE <romain.garbage@inria.fr> | 2025-01-06 12:15:13 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2025-01-07 17:51:18 +0100 |
commit | e94d35e522aa10ab715b53bce91ed397f59b9bd9 (patch) | |
tree | ad635c7db4b9df6e4d23f437ee147dbf54030286 | |
parent | a6642650a78a11e4d3b4cff78e423c600fab7021 (diff) |
docker: Add history field to config.json.
* guix/docker.scm (config): Add history field.
Change-Id: If1d4e9e2ce7673588f9016b389e4c67afa7ac119
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
-rw-r--r-- | guix/docker.scm | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/guix/docker.scm b/guix/docker.scm index 1c6f59568f6..b33c5824ddb 100644 --- a/guix/docker.scm +++ b/guix/docker.scm @@ -135,6 +135,11 @@ Return a version of TAG that follows these rules." `((entrypoint . ,(list->vector entry-point))) '()))) (container_config . #nil) + ;; Some container engines such as <https://github.com/cea-hpc/pcocc> require + ;; these fields. + (history . ,(list->vector `(((created . ,time) + (created_by . "guix pack -f docker") + (comment . "guix pack"))))) (os . "linux") (rootfs . ((type . "layers") (diff_ids . ,(list->vector layers-diff-ids)))))) |