From 7a809e31e03190468332db0386ea59e652c37097 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 19 May 2019 16:55:09 +0000 Subject: [PATCH] Bot Updating Templated Files --- images/docker-ombi.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/images/docker-ombi.md b/images/docker-ombi.md index 94dd85e50f..eed488e9b7 100644 --- a/images/docker-ombi.md +++ b/images/docker-ombi.md @@ -49,8 +49,9 @@ docker create \ -e PUID=1000 \ -e PGID=1000 \ -e TZ=Europe/London \ + -e BASE_URL=/ombi `#optional` \ -p 3579:3579 \ - -v :/config \ + -v /path/to/appdata/config:/config \ --restart unless-stopped \ linuxserver/ombi ``` @@ -71,8 +72,9 @@ services: - PUID=1000 - PGID=1000 - TZ=Europe/London + - BASE_URL=/ombi #optional volumes: - - :/config + - /path/to/appdata/config:/config ports: - 3579:3579 restart: unless-stopped @@ -96,6 +98,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=Europe/London` | Specify a timezone to use EG Europe/London | +| `BASE_URL=/ombi` | Subfolder can optionally be defined as an env variable for reverse proxies. Keep in mind that once this value is defined, the gui setting for base url no longer works. To use the gui setting, remove this env variable. | ### Volume Mappings (`-v`) @@ -137,6 +140,7 @@ Access the webui at `:3579`. Follow the setup wizard on initial install ## Versions +* **10.05.19:** - Added an optional env variable for base url setting. * **23.03.19:** - Switching to new Base images, shift to arm32v7 tag. * **22.02.19:** - Clarify info on tags and development builds. * **25.01.19:** - Add info on tags and development builds.