From 6c1522ff990e03b68ebbde6db12682cc12b67ae6 Mon Sep 17 00:00:00 2001 From: Mathieu Benoit Date: Thu, 2 May 2024 23:46:42 -0400 Subject: [PATCH] [ADD] doc FAQ: docker when missing network interface --- doc/FAQ.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) 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 +```