User Tools

Site Tools


docker-config

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
docker-config [2018/02/11 17:48] – [Configure DNS server] baumidocker-config [2020/04/25 18:48] (current) – [Activate IPv6] baumi
Line 1: Line 1:
-====== Docker Configuration via daemon.json ====== +====== Docker Configuration via /etc/docker/daemon.json ====== 
-===== Prevent Creation of dynamic iptables rules =====+===== Prevent Creation of dynamic iptables rules, disable userland proxy =====
 <code> <code>
 { {
         "iptables": false,         "iptables": false,
-        "ip-masq": false+        "ip-masq": false, 
 +        "userland-proxy": false
 } }
 +</code>
 +
 +===== Create iptables rules manually =====
 +
 +<code>
 +iptables -A FORWARD -s $dockernetwork -m tcp -p tcp -m conntrack --ctstate NEW -j ACCEPT
 +
 </code> </code>
 ===== Configure DNS server===== ===== Configure DNS server=====
 <code> <code>
 { {
-        "dns": ["192.168.100.254"],+        "dns": ["192.168.100.254"] 
 +
 +</code> 
 +===== Activate IPv6 ===== 
 +<code> 
 +
 +    "ipv6": true, 
 +    "fixed-cidr-v6": "fd00:fd00::/64"
 } }
 </code> </code>
 +Just "ipv6" is not enough - docker daemon will not start with an error message about non-overlapping IPv6 network.
  
-{{tag>>docker}}+{{tag>kb linux docker}}
docker-config.1518367682.txt.gz · Last modified: 2018/02/11 17:48 by baumi

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki