From 643260752b3a529f93e15579f857539b5d8c06d3 Mon Sep 17 00:00:00 2001 From: Will Moss Date: Mon, 19 Aug 2024 00:31:18 +0700 Subject: [PATCH] docs(readme): added information about COLUMNS_STACKS and SORTBY_STACKS env variables --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 79a2709..a37314f 100644 --- a/README.md +++ b/README.md @@ -430,10 +430,12 @@ To run Isaiah, you will need to set the following environment variables in a `.e | `COLUMNS_IMAGES` | `string` | Comma-separated list of fields to display in the `Images` panel. (Case-sensitive) (Available: ID, Name, Version, Size) | Name,Version,Size | | `COLUMNS_VOLUMES` | `string` | Comma-separated list of fields to display in the `Volumes` panel. (Case-sensitive) (Available: Name, Driver, MountPoint) | Driver,Name | | `COLUMNS_NETWORKS` | `string` | Comma-separated list of fields to display in the `Networks` panel. (Case-sensitive) (Available: ID, Name, Driver) | Driver,Name | +| `COLUMNS_STACKS` | `string` | Comma-separated list of fields to display in the `Stacks` panel. (Case-sensitive) (Available: Name, Status) | Status,Name | | `SORTBY_CONTAINERS` | `string` | Field used to sort the rows in the `Containers` panel. (Case-sensitive) (Available: ID, State, ExitCode, Name, Image, Created) | Empty | | `SORTBY_IMAGES` | `string` | Field used to sort the rows in the `Images` panel. (Case-sensitive) (Available: ID, Name, Version, Size) | Empty | | `SORTBY_VOLUMES` | `string` | Field used to sort the rows in the `Volumes` panel. (Case-sensitive) (Available: Name, Driver, MountPoint) | Empty | | `SORTBY_NETWORKS` | `string` | Field used to sort the rows in the `Networks` panel. (Case-sensitive) (Available: Id, Name, Driver) | Empty | +| `SORTBY_STACKS` | `string` | Field used to sort the rows in the `Stacks` panel. (Case-sensitive) (Available: Name, Status) | Empty | | `CONTAINER_HEALTH_STYLE`| `string` | Style used to display the containers' health state. (Available: long, short, icon)| long | | `CONTAINER_LOGS_TAIL` | `integer` | Number of lines to retrieve when requesting the last container logs | 50 | | `CONTAINER_LOGS_SINCE` | `string` | The amount of time from now to use for retrieving the last container logs | 60m |