Fix clone step failing, because git.hamburg.ccc.de could not be resolved
This commit is contained in:
parent
2b276b2c97
commit
becec64020
|
@ -10,4 +10,11 @@
|
|||
enable = true;
|
||||
defaultNetwork.settings.dns_enabled = true;
|
||||
};
|
||||
|
||||
networking.firewall.interfaces."podman0" = {
|
||||
# allowedUDPPorts = [ 53 ] gets already set by virtualisation.podman.defaultNetwork.settings.dns_enabled, but set it here explicitly anyway.
|
||||
allowedUDPPorts = [ 53 ];
|
||||
# For git.hamburg.ccc.de to resolve in the clone step for example, allowedTCPPorts also needs to be set to allow DNS.
|
||||
allowedTCPPorts = [ 53 ];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue