From cac220023edbb3bf436a76f3ef64f71b22b92748 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Th=C3=A9ophile=20Diot?= <57175294+TheophileDiot@users.noreply.github.com> Date: Thu, 29 Sep 2022 16:33:12 +0100 Subject: [PATCH] Fix small typo in autoconf integration The autoconf integration had the version 3 but the version 3.5 is mandatory if we want to give names to networks. --- docs/integrations.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/integrations.md b/docs/integrations.md index 2285fedce..7315ff41e 100644 --- a/docs/integrations.md +++ b/docs/integrations.md @@ -241,7 +241,7 @@ docker run \ Here is the docker-compose equivalent for the BunkerWeb autoconf stack : ```yaml -version: '3' +version: '3.5' services: @@ -935,4 +935,4 @@ Configuration of BunkerWeb is done by using specific role variables : | `custom_www` | string | Path of the www directory to upload. | empty value | | `custom_plugins` | string | Path of the plugins directory to upload. | empty value | | `custom_www_owner` | string | Default owner for www files and folders. | `nginx` | -| `custom_www_group` | string | Default group for www files and folders. | `nginx` | \ No newline at end of file +| `custom_www_group` | string | Default group for www files and folders. | `nginx` |