You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-5Lines changed: 6 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -90,9 +90,9 @@ services:
90
90
- PUID=1000
91
91
- PGID=1000
92
92
- TZ=Etc/UTC
93
-
- BASE_URL=/ombi#optional
93
+
- BASE_URL=/ #optional
94
94
volumes:
95
-
- /path/to/appdata/config:/config
95
+
- /path/to/ombi/config:/config
96
96
ports:
97
97
- 3579:3579
98
98
restart: unless-stopped
@@ -106,9 +106,9 @@ docker run -d \
106
106
-e PUID=1000 \
107
107
-e PGID=1000 \
108
108
-e TZ=Etc/UTC \
109
-
-e BASE_URL=/ombi `#optional` \
109
+
-e BASE_URL=/ `#optional` \
110
110
-p 3579:3579 \
111
-
-v /path/to/appdata/config:/config \
111
+
-v /path/to/ombi/config:/config \
112
112
--restart unless-stopped \
113
113
lscr.io/linuxserver/ombi:latest
114
114
```
@@ -123,7 +123,7 @@ Containers are configured using parameters passed at runtime (such as those abov
123
123
|`-e PUID=1000`| for UserID - see below for explanation |
124
124
|`-e PGID=1000`| for GroupID - see below for explanation |
125
125
|`-e TZ=Etc/UTC`| specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List). |
126
-
|`-e 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. |
126
+
|`-e BASE_URL=/`| 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. |
127
127
|`-v /config`| Contains all relevant configuration files. |
128
128
129
129
## Environment variables from files (Docker secrets)
@@ -287,6 +287,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
287
287
288
288
## Versions
289
289
290
+
***08.07.24:** - Rebase to Ubuntu Noble.
290
291
***01.07.23:** - Deprecate armhf. As announced [here](https://www.linuxserver.io/blog/a-farewell-to-arm-hf)
- {env_var: "TZ", env_value: "Europe/London", desc: "Specify a timezone to use EG Europe/London"}
30
27
# optional container parameters
31
28
opt_param_usage_include_env: true
32
29
opt_param_env_vars:
33
-
- {env_var: "BASE_URL", env_value: "/ombi", desc: "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."}
34
-
optional_block_1: false
35
-
optional_block_1_items: ""
30
+
- {env_var: "BASE_URL", env_value: "/", desc: "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."}
31
+
32
+
readonly_supported: true
33
+
readonly_message: |
34
+
* `BASE_URL` cannot be changed from `/`
35
+
36
36
# application setup block
37
37
app_setup_block_enabled: true
38
38
app_setup_block: |
39
39
Access the webui at `<your-ip>:3579`. Follow the setup wizard on initial install. Then configure the required services.
40
40
# changelog
41
41
changelogs:
42
+
- {date: "08.07.24:", desc: "Rebase to Ubuntu Noble."}
42
43
- {date: "01.07.23:", desc: "Deprecate armhf. As announced [here](https://www.linuxserver.io/blog/a-farewell-to-arm-hf)"}
0 commit comments