Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/api/supervisor/endpoints.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ Get details about an app

| key | type | description |
| ------------------- | ------------------ | -------------------------------------------------------------------------------------- |
| advanced | boolean | `true` if advanced mode is enabled |
| advanced | boolean | Deprecated and ignored; always `false` as of Supervisor 2026.03.0 |
| apparmor | string | disabled, default or the name of the profile |
| arch | list | A list of supported architectures for the app |
| audio | boolean | `true` if audio is enabled |
Expand Down
2 changes: 1 addition & 1 deletion docs/api/supervisor/models.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ These models are describing objects that are getting returned from the superviso
| ---------------- | -------------- | ----------------------------------------------------- |
| name | string | The name of the app |
| slug | string | The slug for the app |
| advanced | boolean | `true` if it should only be visible to advanced users |
| advanced | boolean | Deprecated and ignored; always `false` as of Supervisor 2026.03.0 |
| description | string | The description of the app |
| repository | string | The repository the app came from |
| version | string or null | The installed version of the app |
Expand Down
3 changes: 1 addition & 2 deletions docs/apps/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -190,8 +190,7 @@ Avoid using `config.yaml` as filename in your app for anything other than the ap
| `backup_pre` | string | | Command to execute in the context of the app before the backup is taken.
| `backup_post` | string | | Command to execute in the context of the app after the backup was taken.
| `backup_exclude` | list | | List of files/paths (with glob support) that are excluded from backups.
| `advanced` | bool | `false` | Set this to `true` to require the user to have enabled "Advanced" mode for it to show.
| `stage` | string | `stable` | Flag app with follow attribute: `stable`, `experimental` or `deprecated`. Apps set to `experimental` or `deprecated` will not show up in the store unless the user enables advanced mode.
| `stage` | string | `stable` | Flag the app with one of the following attributes to give users an idea of its place in the development lifecycle: `stable`, `experimental` or `deprecated`. |
Copy link
Member

@agners agners Mar 9, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Technically the frontend still uses the stage to hide apps in advanced mode 🤔

I created a separate task for the frontend team: home-assistant/frontend#30067.

I guess it's not a big deal if we already change the docs 🤷

| `init` | bool | `true` | Set this to `false` to disable the Docker default system init. Use this if the image has its own init system (Like [s6-overlay](https://github.com/just-containers/s6-overlay)). *Note: Starting in V3 of S6 setting this to `false` is required or the addon won't start, see [here](https://developers.home-assistant.io/blog/2022/05/12/s6-overlay-base-images) for more information.*
| `watchdog` | string | | A URL for monitoring the app health. Like `http://[HOST]:[PORT:2839]/dashboard`, the port needs the internal port, which will be replaced with the effective port. It is also possible to bind the protocol part to a configuration option with: `[PROTO:option_name]://[HOST]:[PORT:2839]/dashboard` and it's looked up if it is `true` and it's going to `https`. For simple TCP port monitoring you can use `tcp://[HOST]:[PORT:80]`. It works for apps on the host or internal network.
| `realtime` | bool | `false` | Give app access to host schedule including `SYS_NICE` for change execution time/priority.
Expand Down