11 lines
208 B
Markdown
11 lines
208 B
Markdown
```json title="/etc/docker/daemon.json"
|
|
{
|
|
"ipv6": true,
|
|
"fixed-cidr-v6": "2001:db8:1::/64"
|
|
}
|
|
```
|
|
|
|
```bash
|
|
sudo systemctl reboot
|
|
docker network create --subnet=192.168.1.0/24 --ipv6 --attachable proxy
|
|
```
|