feat: docker - pulling using containerd

This commit is contained in:
Ryan Yin
2023-12-12 22:08:28 +08:00
parent 75ef84913f
commit 5ca251646a

View File

@@ -92,6 +92,12 @@
virtualisation.docker = {
enable = true;
daemon.settings = {
# enables pulling using containerd, which supports restarting from a partial pull
# https://docs.docker.com/storage/containerd/
"features" = {"containerd-snapshotter" = true; };
};
# start dockerd on boot.
# This is required for containers which are created with the `--restart=always` flag to work.
enableOnBoot = true;