services: docker: Make docker command available.
* gnu/services/docker.scm (docker-service-type): Extend the profile-service-type and add the docker-cli package.master
parent
ef7381f463
commit
8422a67dc1
|
@ -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 @@ loop-back communications.")
|
|||
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
|
||||
|
|
Reference in New Issue