Configure flowable.history-level when using docker image

Hi there.
I have deployed Flowable using the available docker images.
I now want to change the flowable.history-level property to ‘none’.
Do I just define a new environment variable in docker-compose.yml called FLOWABLE_HISTORY-LEVEL?
That seems too easy. What is the correct way to go about this?

Hi,

yes. That should be it.
Did it not work?

Regards,

Yvo

In general, yes, though I’m not sure if FLOWABLE_HISTORY-LEVEL will work or if you’ll need FLOWABLE_HISTORY_LEVEL. This is a Spring boot feature. Take a look at the relaxed binding section of the following documentation:

https://docs.spring.io/spring-boot/docs/current/reference/html/spring-boot-features.html#boot-features-external-config-relaxed-binding

Thanks I will try that!