Deployment description
[oam.git] / solution / smo / common / docker / README.md
1 # Docker configuration
2
3 To support IPv6 the docker configuration must be modified. 
4
5 Please see:
6 https://docs.docker.com/config/daemon/ipv6/
7
8 1. Edit /etc/docker/daemon.json, set the ipv6 key to true and the fixed-cidr-v6 key to your IPv6 subnet. In this example we are setting it to 2001:db8:1::/64.
9
10
11 ```
12 {
13   "registry-mirrors": [
14       "https://nexus3.o-ran-sc.org:10002", 
15       "https://nexus3.onap.org:10001"
16   ],
17   "log-driver": "json-file",
18   "log-opts": {
19     "max-size": "10m",
20     "max-file": "3"
21   },
22   "ipv6": true,
23   "fixed-cidr-v6": "2001:db8:1::/64"
24 }
25 ```
26
27 2. Reload the Docker configuration file.
28
29 ```
30 $ systemctl reload docker
31 ```