summary refs log tree commit diff
diff options
context:
space:
mode:
authormaxine <35892750+maxeaubrey@users.noreply.github.com>2023-02-28 21:47:55 +0100
committerGitHub <noreply@github.com>2023-02-28 21:47:55 +0100
commit7ceeb440c1a297a02226e6d1443f0a57997fb684 (patch)
treec821515528acd7f17c41668eb8f7d86e7d06ed88
parent4389f864255c7fcde84c58ac25b2cfdb34a2a6cd (diff)
parent30081adcd56e046701a7209fd58f1695a442d660 (diff)
downloadnixpkgs-7ceeb440c1a297a02226e6d1443f0a57997fb684.tar
nixpkgs-7ceeb440c1a297a02226e6d1443f0a57997fb684.tar.gz
nixpkgs-7ceeb440c1a297a02226e6d1443f0a57997fb684.tar.bz2
nixpkgs-7ceeb440c1a297a02226e6d1443f0a57997fb684.tar.lz
nixpkgs-7ceeb440c1a297a02226e6d1443f0a57997fb684.tar.xz
nixpkgs-7ceeb440c1a297a02226e6d1443f0a57997fb684.tar.zst
nixpkgs-7ceeb440c1a297a02226e6d1443f0a57997fb684.zip
Merge pull request #213604 from mikroskeem/feature/docker-local-log-driver
nixos/docker: add "local" as valid logDriver option
-rw-r--r--nixos/modules/virtualisation/docker.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/virtualisation/docker.nix b/nixos/modules/virtualisation/docker.nix
index 505cb4e32e1..046b8e2f790 100644
--- a/nixos/modules/virtualisation/docker.nix
+++ b/nixos/modules/virtualisation/docker.nix
@@ -100,7 +100,7 @@ in
 
     logDriver =
       mkOption {
-        type = types.enum ["none" "json-file" "syslog" "journald" "gelf" "fluentd" "awslogs" "splunk" "etwlogs" "gcplogs"];
+        type = types.enum ["none" "json-file" "syslog" "journald" "gelf" "fluentd" "awslogs" "splunk" "etwlogs" "gcplogs" "local"];
         default = "journald";
         description =
           lib.mdDoc ''