summaryrefslogtreecommitdiff
path: root/services
diff options
context:
space:
mode:
authorKenny Ballou <kballou@devnulllabs.io>2019-07-18 05:47:59 -0600
committerKenny Ballou <kballou@devnulllabs.io>2019-07-18 05:47:59 -0600
commit4ab6e2130b36505f33fcf4c1f87af1d001c47818 (patch)
treea974eb5d46127d86b88c63611d6e6dd85a9e1eac /services
parented264efb79e7cb6869a94e46ff228b74f149d095 (diff)
downloadcfg.nix-4ab6e2130b36505f33fcf4c1f87af1d001c47818.tar.gz
cfg.nix-4ab6e2130b36505f33fcf4c1f87af1d001c47818.tar.xz
docker: use correct host address for DNS
Signed-off-by: Kenny Ballou <kballou@devnulllabs.io>
Diffstat (limited to 'services')
-rw-r--r--services/docker.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/services/docker.nix b/services/docker.nix
index 0e28466..c45037c 100644
--- a/services/docker.nix
+++ b/services/docker.nix
@@ -4,7 +4,7 @@
enable = true;
autoPrune.enable = true;
extraOptions = ''
- --dns=127.0.0.1 --iptables=false
+ --dns=172.17.0.1 --iptables=false
'';
storageDriver = "btrfs";
};