1
0
Fork 0

Update docker service configuration.

This commit is contained in:
Kevin Baensch 2023-01-29 14:38:08 +01:00
parent 460da50ab8
commit f344ca1772
Signed by: derped
GPG Key ID: C0F1D326C7626543
1 changed files with 5 additions and 1 deletions

View File

@ -4,7 +4,11 @@
with lib;
mkIf (elem "docker" config.machine.services) {
virtualisation.docker.enable = true;
virtualisation.docker= {
enable = true;
# Disable live restore as it tends to delay/block system shutdown
liveRestore = false;
};
environment.systemPackages = with pkgs; [ docker-compose docker-machine ];
### Docker Image stuff will probably follow here
}