Update AppAPI app manually?

Is there a way to upgrade the AppAPI app manually? The current version 32.0.0 which is shipped with NC 32.0.2 contains an annoying bug which breaks communication with HaRP Proxies (docker-install) due to an outdated docker API version. Thus, other apps (Collabra) don’t work any more e.g. on Debian 12 Bookworm systems.

1 Like

They say that you can apply the patch:

More about applying patches:

The code-integrity check will then trigger an error for the files that were changed.

2 Likes

As a temporary workaround (tested on Debian 13), you could also place a file named daemon.json in /etc/docker with the following content:

{
  "min-api-version": "1.24"
}

Then restart the Docker service:

systemctl restart docker

Once all containers are compatible, simply delete the file and restart the Docker service again.

See also: https://www.docker.com/blog/docker-engine-version-29/

1 Like

Great, thanks a lot, apps working again also on Debian 12. Issue solved.

2 Likes

This topic was automatically closed 8 days after the last reply. New replies are no longer allowed.