mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
services: docker: Make docker command available.
* gnu/services/docker.scm (docker-service-type): Extend the profile-service-type and add the docker-cli package.
This commit is contained in:
parent
ef7381f463
commit
8422a67dc1
1 changed files with 4 additions and 0 deletions
|
@ -2,6 +2,7 @@
|
|||
;;; Copyright © 2018 Danny Milosavljevic <dannym@scratchpost.org>
|
||||
;;; Copyright © 2020 Jakub Kądziołka <kuba@kadziolka.net>
|
||||
;;; Copyright © 2020 Maxim Cournoyer <maxim.cournoyer@gmail.com>
|
||||
;;; Copyright © 2020 Efraim Flashner <efraim@flashner.co.il>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -133,6 +134,9 @@ (define docker-service-type
|
|||
bundles in Docker containers.")
|
||||
(extensions
|
||||
(list
|
||||
;; Make sure the 'docker' command is available.
|
||||
(service-extension profile-service-type
|
||||
(list docker-cli))
|
||||
(service-extension activation-service-type
|
||||
%docker-activation)
|
||||
(service-extension shepherd-root-service-type
|
||||
|
|
Loading…
Reference in a new issue