Hello,
I am using the camunda-bpm-platform:tomcat-7.16.0 docker image to run camunda in a docker container.
Everytime I get an error response from engine-rest I can see the version of tomcat being used (see image below).
This has been pointed out as a security risk. I found this post and followed it. Basically it says to:
- Go to
<Tomcat_INSTAL_DIR>/bin/tomcat/lib
. - Create subfolders/directory structure as follows
org\apache\catalina\util\
- Create a text file as
ServerInfo.properties
- Add the following lines, to
ServerInfo.properties
file and Save.
server.info=Something
- Stop and start tomcat service.
However I can’t find the directory <Tomcat_INSTAL_DIR>/bin/tomcat/lib
inside of my docker container and it is unclear to me where I should put the ServerInfo.properties
file.
Is this the correct approach, or is there a better way to achieve this?