mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-13 21:50:33 +03:00
nixos/docker: enable socketActivation by default
This commit is contained in:
parent
4e61fc89d2
commit
a6c42b5945
1 changed files with 1 additions and 6 deletions
|
@ -31,16 +31,11 @@ in
|
||||||
socketActivation =
|
socketActivation =
|
||||||
mkOption {
|
mkOption {
|
||||||
type = types.bool;
|
type = types.bool;
|
||||||
default = false;
|
default = true;
|
||||||
description =
|
description =
|
||||||
''
|
''
|
||||||
This option enables docker with socket activation. I.e. docker will
|
This option enables docker with socket activation. I.e. docker will
|
||||||
start when first called by client.
|
start when first called by client.
|
||||||
|
|
||||||
Note: This is false by default because systemd lower than 214 that
|
|
||||||
nixos uses so far, doesn't support SocketGroup option, so socket
|
|
||||||
created by docker has root group now. This will likely be changed
|
|
||||||
in future. So set this option explicitly to false if you wish.
|
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
storageDriver =
|
storageDriver =
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue