fix: format fix

This commit is contained in:
minoplhy 2025-03-12 13:34:31 +07:00
parent 505a1334b7
commit a13711e7f9
Signed by: minoplhy
GPG Key ID: 41D406044E2434BF

View File

@ -83,7 +83,10 @@ If you are on older versions: Docker does not enable IPv6 by default. If you wan
At the time of writing, `docker` package on Alpine Linux has problem connecting to outside of container on IPv6, this is caused by somehow docker package Alpine Linux doesn't set NAT routing on ip6tables, this could be fixed by At the time of writing, `docker` package on Alpine Linux has problem connecting to outside of container on IPv6, this is caused by somehow docker package Alpine Linux doesn't set NAT routing on ip6tables, this could be fixed by
1. `ip6tables -t nat -A POSTROUTING -s <Docker IPv6 subnet>/64 -o <Internet Interface> -j MASQUERADE` 1. Add the following ip6tables rule directly:
```shell
ip6tables -t nat -A POSTROUTING -s <Docker IPv6 subnet>/64 -o <Internet Interface> -j MASQUERADE
```
2. if you're using AWALL add following in `private/`: 2. if you're using AWALL add following in `private/`:
```json ```json
"snat": [ "snat": [