From d40d12ca2a22735bc622b27241d8644f6c487d12 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 12 Feb 2023 03:37:17 +0100 Subject: [PATCH] Bot Updating Documentation --- images/docker-fleet.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/images/docker-fleet.md b/images/docker-fleet.md index 05f39c52f..81c856492 100644 --- a/images/docker-fleet.md +++ b/images/docker-fleet.md @@ -31,7 +31,7 @@ The architectures supported by this image are: | :----: | :----: | ---- | | x86-64 | ✅ | amd64-\ | | arm64 | ✅ | arm64v8-\ | -| armhf| ✅ | arm32v7-\ | +| armhf | ✅ | arm32v7-\ | ## Application Setup @@ -55,6 +55,7 @@ services: environment: - PUID=1000 - PGID=1000 + - TZ=Etc/UTC - fleet_admin_authentication_type=DATABASE - fleet_database_url=jdbc:mariadb://:3306/fleet - fleet_database_username=fleet_user @@ -74,6 +75,7 @@ docker run -d \ --name=fleet \ -e PUID=1000 \ -e PGID=1000 \ + -e TZ=Etc/UTC \ -e fleet_admin_authentication_type=DATABASE \ -e fleet_database_url=jdbc:mariadb://:3306/fleet \ -e fleet_database_username=fleet_user \ @@ -83,6 +85,7 @@ docker run -d \ -v :/config \ --restart unless-stopped \ lscr.io/linuxserver/fleet:latest + ``` ## Parameters @@ -101,6 +104,7 @@ Docker images are configured using parameters passed at runtime (such as those a | :----: | --- | | `PUID=1000` | for UserID - see below for explanation | | `PGID=1000` | for GroupID - see below for explanation | +| `TZ=Etc/UTC` | specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List). | | `fleet_admin_authentication_type=DATABASE` | A switch to define how Fleet manages user logins. If set to DATABASE, see the related optional params. Can be set to either DATABASE or PROPERTIES. | | `fleet_database_url=jdbc:mariadb://:3306/fleet` | The full JDBC connection string to the Fleet database | | `fleet_database_username=fleet_user` | The username with the relevant GRANT permissions for the database |