diff --git a/doc/FAQ.md b/doc/FAQ.md index d57238c..d1811a2 100644 --- a/doc/FAQ.md +++ b/doc/FAQ.md @@ -148,3 +148,22 @@ Add line at the end of config.conf ``` limit_memory_hard = 0 ``` + +### Docker - All interface bind docker + +Create a subnet + +```bash +sudo docker network create localnetwork --subnet 10.0.1.0/24 +``` + +And create `docker-compose.override.yml` at root project with + + +```yaml +version: '3' +networks: + default: + external: + name: localnetwork +```