Bot Updating Templated Files

LICENSE
LinuxServer-CI 2019-05-19 16:55:09 +00:00
rodzic 47e85e940d
commit e4dd321a78
1 zmienionych plików z 6 dodań i 2 usunięć

Wyświetl plik

@ -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 </path/to/appdata/config>:/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:
- </path/to/appdata/config>:/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 `<your-ip>: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.