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
style(explorer): improve upgrade warning clarity and formatting
Use semantic line feeds, replace bold text with heading in callouts,
explain the root cause (root-owned volumes), and use standard callout
syntax for the release notes upgrade notice.
-**Container user change**: The Docker container now runs as non-root user `influxui` (uid 1500) instead of root for improved security.
24
24
25
-
**Action required for upgrades:** If you're upgrading from v1.6.x or earlier with mounted volumes (e.g., `/db`, `/app-root/config`), you must update file ownership before the container will start:
26
-
27
-
```bash
28
-
sudo chown -R 1500:1500 /path/to/your/db
29
-
sudo chown -R 1500:1500 /path/to/your/config
30
-
```
31
-
32
-
The container will exit with a clear error message and instructions if it detects root-owned files. Fresh installations are unaffected.
25
+
> [!Important]
26
+
> #### Action required for upgrades
27
+
>
28
+
> If you're upgrading from v1.6.x or earlier with mounted volumes
29
+
> (for example, `/db` or `/app-root/config`), update file ownership
30
+
> before you start the container:
31
+
>
32
+
> ```bash
33
+
> sudo chown -R 1500:1500 /path/to/your/db
34
+
> sudo chown -R 1500:1500 /path/to/your/config
35
+
>```
36
+
>
37
+
> The container exits with an error message if it detects root-owned
0 commit comments