;; This is an operating system configuration template for a "Docker image" ;; setup, so it has barely any services at all. (use-modules (gnu)) (operating-system (host-name "komputilo") (timezone "Europe/Berlin") (locale "en_US.utf8") ;; This is where user accounts are specified. The "root" account is ;; implicit, and is initially created with the empty password. (users (cons (user-account (name "alice") (comment "Bob's sister") (group "users") (supplementary-groups '("wheel" "audio" "video")) (home-directory "/home/alice")) %base-user-accounts)) ;; Globally-installed packages. (packages %base-packages) ;; Because the system will run in a Docker container, we may omit many ;; things that would normally be required in an operating system ;; configuration file. These things include: ;; ;; * bootloader ;; * file-systems ;; * services such as mingetty, udevd, slim, networking, dhcp ;; ;; Either these things are simply not required, or Docker provides ;; similar services for us. ;; This will be ignored. (bootloader (bootloader-configuration (bootloader grub-bootloader) (target "does-not-matter"))) ;; This will be ignored, too. (file-systems (list (file-system (device "does-not-matter") (mount-point "/") (type "does-not-matter")))) ;; Guix is all you need! (services (list (guix-service)))) on='/guix/log/gnu/packages/docker.scm'>
path: root/gnu/packages/docker.scm
AgeCommit message (Expand)Author
2020-11-21gnu: python-docker: Propagate runtime dependency....Marius Bakke
2020-11-14gnu: cqfd: Update to 5.2.1....Maxim Cournoyer
2020-10-16gnu: containerd: Don't 'chdir' in build phases....Oleg Pykhalov
2020-10-16gnu: docker-cli: Fix build....Efraim Flashner
2020-09-21gnu: docker: Compile with seccomp enabled....Jesse Dowell
2020-09-21gnu: docker: Synchronize docker dependencies with the current version of docker....Jesse Dowell
2020-09-05gnu: python-docker-py: Rename to python-docker....Andreas Enge
2020-07-14gnu: python-docker-py: Remove unused input....Marius Bakke
2020-07-12gnu: Remove ".git" from "https://github/…/….git"....Ludovic Courtès