Set resolv.conf file manually for uptime-kuma container due to a bug

This commit is contained in:
fi 2024-11-20 05:46:40 +01:00
parent d18fe31991
commit e7259ca980

View file

@ -10,6 +10,13 @@
enable = true; enable = true;
}; };
# The resolv.conf file doesn't seem to be copied from host after the first start of the container after reboot
# See: https://nixos.wiki/wiki/NixOS_Containers#Troubleshooting
environment.etc."resolv.conf".text = ''
nameserver 172.16.0.2
nameserver 172.16.0.3
'';
system.stateVersion = "23.05"; system.stateVersion = "23.05";
}; };
}; };