Home Assistant Core 2023.6 - Settings/System/Storage doesn't exist

I have this installed in docker, but this option doesn’t exist.

I really really really want to get my backups going somewhere else other than the config folder.

How do I get this option to show up?

yes, this function is only for Home Assistant Operating System installs

I like you, hope this will extend to Container users at some point.
Edit: thanks to @tom_l for pointing out the obvious.

It won’t be. It makes no sense for your installation type.

You have full control of the host OS and can mount any share you want.

This feature is specifically for HAOS as this did not allow this level of control via the OS.

2 Likes

Just mount it yourself…

[...]
        volumes:
            - /opt/docker_files/homeassistant/config:/config
            - nfs_backups:/config/backups
[...]
volumes:
  nfs_backups:
    driver_opts:
      type: "nfs"
      o: "addr=theia.lan,nolock,soft,nfsvers=3"
      device: ":/export/backups/hass/main"

3 Likes

Right but that doesn’t give me the option under backups to point to it and I haven’t been able to find any way to change the backup path otherwise.

By changing the mount point of /config/backups, you’re effectively changing the backup path :wink:

But whatever, that feature relies on having full control of the machine, so no way it will ever come to the Container or Core install method (not sure if it works for Supervised).

1 Like