From 6f45faf27ac34a2f914b04e089016fb5182df9ec Mon Sep 17 00:00:00 2001 From: Amir Raminfar Date: Sun, 11 May 2025 18:36:57 -0700 Subject: [PATCH] docs: updates guide --- docs/guide/getting-started.md | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/docs/guide/getting-started.md b/docs/guide/getting-started.md index 3e275438..f2cea8c7 100644 --- a/docs/guide/getting-started.md +++ b/docs/guide/getting-started.md @@ -28,9 +28,20 @@ services: - /var/run/docker.sock:/var/run/docker.sock ports: - 8080:8080 + environment: + # Uncomment to enable container actions (stop, start, restart). See https://dozzle.dev/guide/actions + # - DOZZLE_ENABLE_ACTIONS=true + # + # Uncomment to allow access to container shells. See https://dozzle.dev/guide/shell + # - DOZZLE_ENABLE_SHELL=true + # + # Uncomment to enable authentication. See https://dozzle.dev/guide/authentication + # - DOZZLE_AUTH_PROVIDER=simple ``` -::: +> [!TIP] +> Dozzle supports actions, such as stopping, starting, and restarting containers, or attaching to container shells. But they are disabled by default for security reasons. To enable them, uncomment the corresponding environment variables. +> ::: Dozzle also supports connecting to remote agents to monitor multiple Docker hosts. See [agent](/guide/agent) to learn more.