From 7ac16a4f09b1fac8bc7a9af977a9b45dd469f095 Mon Sep 17 00:00:00 2001 From: Valentin Brandl Date: Thu, 10 Nov 2022 11:10:47 +0100 Subject: [PATCH] Use podman instead of docker --- machines/common.nix | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/machines/common.nix b/machines/common.nix index a39246b..f6f407f 100644 --- a/machines/common.nix +++ b/machines/common.nix @@ -128,15 +128,17 @@ inputs: ]; virtualisation = { - docker = { - enable = true; - }; - - # podman = { + # docker = { # enable = true; - # dockerCompat = true; - # dockerSocket.enable = true; # }; + + podman = { + enable = true; + dockerCompat = true; + # to make networking in docker-compose work + defaultNetwork.dnsname.enable = true; + #dockerSocket.enable = true; + }; # lxd.enable = true; # virtualbox.host.enable = true; # virtualbox.host.enableExtensionPack = true;