mao-aavn The webapps folder is not intended for persistent storage, and it no longer receives updates. That seems to be the root of the issue. Why are you trying to mount a persistent volume at ./webapps_lib:/usr/lib/axonivy-engine/webapps/ivy/WEB-INF/lib?
If your goal is to add an additional JAR to the lib folder, I recommend building a custom Axon Ivy Engine image that includes the required JAR file.
Dockerfile:
FROM axonivy/axonivy-engine:10.0.29
ADD your.jar /usr/lib/axonivy-engine/webapps/ivy/WEB-INF/lib/your.jar
and use it in the compose.yaml file like this:
services:
ivy:
build: .