From 547d418401c1e1d710e56e7e26765fb581aff981 Mon Sep 17 00:00:00 2001 From: Sergio <77530549+sergi0g@users.noreply.github.com> Date: Sun, 28 Sep 2025 21:49:35 +0300 Subject: [PATCH] docs: fix incorrect compose example with environment variables --- docs/src/content/docs/configuration/index.mdx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/src/content/docs/configuration/index.mdx b/docs/src/content/docs/configuration/index.mdx index 97a7d58..1c1f595 100644 --- a/docs/src/content/docs/configuration/index.mdx +++ b/docs/src/content/docs/configuration/index.mdx @@ -131,11 +131,11 @@ services: ports: - 8000:8000 environment: - - CUP_AGENT: true - - CUP_IGNORE_UPDATE_TYPE: major - - CUP_REFRESH_INTERVAL: "0 */30 * * * *" - - CUP_SOCKET: tcp://localhost:2375 - - CUP_THEME: blue + CUP_AGENT: "true" + CUP_IGNORE_UPDATE_TYPE: major + CUP_REFRESH_INTERVAL: "0 */30 * * * *" + CUP_SOCKET: tcp://localhost:2375 + CUP_THEME: blue ```