l prism.r: add docker workaround for mumble-web firewall

This commit is contained in:
lassulus 2021-09-15 21:23:29 +02:00
parent e7d5d99083
commit 8acf89ffdb
2 changed files with 7 additions and 0 deletions

View File

@ -277,6 +277,7 @@ with import <stockholm/lib>;
];
}
<stockholm/lass/2configs/murmur.nix>
<stockholm/lass/2configs/docker.nix>
{
systemd.services."container@yellow".reloadIfChanged = mkForce false;
containers.yellow = {

6
lass/2configs/docker.nix Normal file
View File

@ -0,0 +1,6 @@
{ pkgs, lib, config, ... }:
{
systemd.services.krebs-iptables.serviceConfig.ExecStartPost = pkgs.writeDash "kick_docker" ''
${pkgs.systemd}/bin/systemctl restart docker.service
'';
}