From 9cfc20815a55d42610abe1d876ebfd5f4804fb39 Mon Sep 17 00:00:00 2001 From: TUNER88 Date: Tue, 3 Dec 2019 17:06:18 +0100 Subject: [PATCH] Add filter usage hints (#194) * Add reference to supported filters * fix spacing --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index c60b6461..3b4bf8c1 100644 --- a/README.md +++ b/README.md @@ -45,6 +45,7 @@ dozzle will be available at [http://localhost:8888/](http://localhost:8888/). Yo image: amir20/dozzle:latest environment: - DOZZLE_TAILSIZE=100 + - DOZZLE_FILTER='status:running' volumes: - /var/run/docker.sock:/var/run/docker.sock ports: @@ -62,7 +63,7 @@ If you wish to restrict the containers shown you can pass the `--filter` paramet $ docker run --volume=/var/run/docker.sock:/var/run/docker.sock -p 8888:1224 amir20/dozzle:latest --filter name=foo -this would then only allow you to view containers with a name starting with "foo" +this would then only allow you to view containers with a name starting with "foo". You can use other filters like `status` as well, please check the official docker [command line docs](https://docs.docker.com/engine/reference/commandline/ps/#filtering) for available filters. #### Changing base URL