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.