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:
Thanks I will try that!