aboutsummaryrefslogtreecommitdiff
path: root/gnu/system/examples/docker-image.tmpl
blob: 7123917af4ee068c8c5914d9c8a8420f659637dd (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
;; -*- mode: scheme; -*-
;; 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")))
               %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)
               (targets '("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 (service guix-service-type))))
07-17gnu: osm2pgsql: Update to 1.2.2....Björn Höfling 2020-07-17gnu: libosmium: Update to 2.15.6....Björn Höfling 2020-07-17gnu: gdal: Update to 3.1.2....Björn Höfling 2020-07-17gnu: gdal: Add postgresql dependency....Björn Höfling 2020-07-12gnu: Remove ".git" from "https://github/…/….git"....Ludovic Courtès 2020-07-05gnu: josm: Update to 16731....Julien Lepiller 2020-07-05gnu: Add java-opening-hours-parser....Julien Lepiller 2020-06-22gnu: qgis: Disable some failing tests....Guillaume Le Vaillant 2020-05-17gnu: java-jmapviewer: Return #t from all phases....Björn Höfling 2020-05-10gnu: postgis: Add missing input....Guillaume Le Vaillant 2020-05-04gnu: gnome-maps: Remove obsolete input....Marius Bakke 2020-05-04gnu: gnome-maps: Do not propagate GTK+....Marius Bakke 2020-05-04gnu: gnome-maps: Add missing input....Marius Bakke 2020-04-18gnu: gnome-maps: Update to 3.34.2....Kei Kebreau 2020-04-13gnu: qgis: Do not use the deprecated sqlite-with-column-metadata....Marius Bakke 2020-04-13Merge branch 'master' into core-updatesMarius Bakke 2020-04-12gnu: josm: Fix grammar of "allows to edit" to "allows editing"....Vagrant Cascadian 2020-04-12gnu: java-jmapviewer: Fix grammar of "allows to easily integrate" to "easily...Vagrant Cascadian 2020-04-08Merge branch 'master' into core-updates...Marius Bakke 2020-04-04gnu: qgis: Fix some plugins....Guillaume Le Vaillant