From 15e410a874195dfdd0962d82ebce0935f5f9ecde Mon Sep 17 00:00:00 2001 From: Amir Raminfar Date: Mon, 24 Feb 2025 08:29:32 -0800 Subject: [PATCH] chore: updates readme --- README.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 80dc1912..006efdfe 100644 --- a/README.md +++ b/README.md @@ -97,9 +97,9 @@ Once you have the podman remote socket you can run Dozzle on podman. podman run --volume=/run/user/1000/podman/podman.sock:/var/run/docker.sock -d -p 8080:8080 docker.io/amir20/dozzle:latest ``` -Additionally you have to create a fake engine-id to prevent ```host not found``` errors. Podman doesn't generate an engine-id like Docker by itself due to its daemonless architecture. +Additionally you have to create a fake engine-id to prevent `host not found` errors. Podman doesn't generate an engine-id like Docker by itself due to its daemonless architecture. -Under ```/var/lib/docker``` create a file named ```engine-id```. On a system with Podman you will have to create the folder path as well. Inside the file place the UUID, for instance using ```uuidgen > engine-id```. After that the file should have an identifier that looks like this: ```b9f1d7fc-b459-4b6e-9f7a-e3d1cd2e14a9```. +Under `/var/lib/docker` create a file named `engine-id`. On a system with Podman you will have to create the folder path as well. Inside the file place the UUID, for instance using `uuidgen > engine-id`. After that the file should have an identifier that looks like this: `b9f1d7fc-b459-4b6e-9f7a-e3d1cd2e14a9`. For more details check [Podman Infos](docs/guide/podman.md) or the [FAQ](docs/guide/faq.md#i-am-seeing-host-not-found-error-in-the-logs-how-do-i-fix-it) @@ -127,12 +127,14 @@ Dozzle follows the [12-factor](https://12factor.net/) model. Configurations can | `--auth-header-user` | `DOZZLE_AUTH_HEADER_USER` | `Remote-User` | | `--auth-header-email` | `DOZZLE_AUTH_HEADER_EMAIL` | `Remote-Email` | | `--auth-header-name` | `DOZZLE_AUTH_HEADER_NAME` | `Remote-Name` | -| `--enable-actions` | `DOZZLE_ENABLE_ACTIONS` | false | +| `--enable-actions` | `DOZZLE_ENABLE_ACTIONS` | `false` | | `--filter` | `DOZZLE_FILTER` | `""` | -| `--no-analytics` | `DOZZLE_NO_ANALYTICS` | false | +| `--no-analytics` | `DOZZLE_NO_ANALYTICS` | `false` | | `--mode` | `DOZZLE_MODE` | `server` | | `--remote-host` | `DOZZLE_REMOTE_HOST` | | | `--remote-agent` | `DOZZLE_REMOTE_AGENT` | | +| `--timeout` | `DOZZLE_TIMEOUT` | `10s` | +| `--namespace` | `DOZZLE_NAMESPACE` | `""` | ## Support