diff options
| -rw-r--r-- | gnu/packages/docker.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/docker.scm b/gnu/packages/docker.scm index 3fc7e373c1b..9f180244eda 100644 --- a/gnu/packages/docker.scm +++ b/gnu/packages/docker.scm | |||
| @@ -418,6 +418,30 @@ store API. It allows programmers to interact with a Docker registry using | |||
| 418 | Python without keeping their credentials in a Docker configuration file.") | 418 | Python without keeping their credentials in a Docker configuration file.") |
| 419 | (license license:asl2.0))) | 419 | (license license:asl2.0))) |
| 420 | 420 | ||
| 421 | (define-public python-udocker | ||
| 422 | (package | ||
| 423 | (name "python-udocker") | ||
| 424 | (version "1.3.17") | ||
| 425 | (source | ||
| 426 | (origin | ||
| 427 | (method git-fetch) | ||
| 428 | (uri (git-reference | ||
| 429 | (url "https://github.com/indigo-dc/udocker") | ||
| 430 | (commit version))) | ||
| 431 | (file-name (git-file-name name version)) | ||
| 432 | (sha256 | ||
| 433 | (base32 "1nbsj3kwlnkr12ykl1xd0r2hykikhrs0z9wgfb26y2nxpf85z3rz")))) | ||
| 434 | (build-system pyproject-build-system) | ||
| 435 | ;; Daemon chroot inconsistencies. | ||
| 436 | (arguments (list #:test-flags #~(list "-k" "not test_05__get_volume_bindings"))) | ||
| 437 | (native-inputs (list python-pytest python-setuptools)) | ||
| 438 | (home-page "https://github.com/indigo-dc/udocker") | ||
| 439 | (synopsis "Execute simple docker containers without root privileges") | ||
| 440 | (description | ||
| 441 | "This package provides a basic user tool to execute simple docker containers in | ||
| 442 | batch or interactive systems without root privileges.") | ||
| 443 | (license license:asl2.0))) | ||
| 444 | |||
| 421 | (define-public containerd | 445 | (define-public containerd |
| 422 | (package | 446 | (package |
| 423 | (name "containerd") | 447 | (name "containerd") |
