Skip to content

Commit

Permalink
rin: Add localhost to docker firewall exceptions
Browse files Browse the repository at this point in the history
  • Loading branch information
tlater-famedly committed Jul 15, 2024
1 parent a31d748 commit b88520b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nixos-config/hosts/rin/hardware-policy.nix
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@
addresses = lib.concatMapStringsSep "," (pool: pool.base) dockerAddressPools;
in
''
iptables -A INPUT -s ${addresses} -d ${addresses} -j ACCEPT
iptables -A INPUT -s ${addresses} -d ${addresses},172.17.0.1 -j ACCEPT
'';
};

Expand Down

0 comments on commit b88520b

Please sign in to comment.