From 64776dd72f7f09fb2aed5378f88f6721fda7aa3a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20B=C3=B6hmke?= Date: Wed, 18 Nov 2020 21:59:16 +0100 Subject: [PATCH] added ip6tables to daemon CLI and config file doc MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Benjamin Böhmke --- docs/reference/commandline/dockerd.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/reference/commandline/dockerd.md b/docs/reference/commandline/dockerd.md index ae586c7437..a482577fb7 100644 --- a/docs/reference/commandline/dockerd.md +++ b/docs/reference/commandline/dockerd.md @@ -70,6 +70,7 @@ Options: --ip-forward Enable net.ipv4.ip_forward (default true) --ip-masq Enable IP masquerading (default true) --iptables Enable addition of iptables rules (default true) + --ip6tables Enable addition of ip6tables rules (default false) --ipv6 Enable IPv6 networking --label list Set key=value labels to the daemon --live-restore Enable live restore of docker when containers are still running @@ -1392,6 +1393,7 @@ This is a full example of the allowed configuration options on Linux: "ip-forward": false, "ip-masq": false, "iptables": false, + "ip6tables": false, "ipv6": false, "labels": [], "live-restore": true,