X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=solution%2Fsmo%2Fcommon%2Fdocker%2FREADME.md;fp=solution%2Fsmo%2Fcommon%2Fdocker%2FREADME.md;h=814084d086003cfb52a91986cc3abee0cccf0502;hb=990de7205645f827a36429006f7e5529b5fb6866;hp=0000000000000000000000000000000000000000;hpb=a3be9ade3bec5ca8cd5b41032704872f87d8c065;p=oam.git diff --git a/solution/smo/common/docker/README.md b/solution/smo/common/docker/README.md new file mode 100644 index 0000000..814084d --- /dev/null +++ b/solution/smo/common/docker/README.md @@ -0,0 +1,32 @@ +# Docker configuration + +To support IPv6 the docker configuration must be modified. + +Please see: +https://docs.docker.com/config/daemon/ipv6/ + +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. + + +``` +{ + "dns": ["1.1.1.1"], + "registry-mirrors": [ + "https://nexus3.o-ran-sc.org:10002", + "https://nexus3.onap.org:10001" + ], + "log-driver": "json-file", + "log-opts": { + "max-size": "10m", + "max-file": "3" + }, + "ipv6": true, + "fixed-cidr-v6": "2001:db8:1::/64" +} +``` + +2. Reload the Docker configuration file. + +``` +$ systemctl reload docker +``` \ No newline at end of file