Docker-Compose app-base-image

Bonjour,

j’ai essayé de créer un docker-compose avec l’image app-base-image présente sur dockerhub et la seule encore mise à jour à priori mais j’obtiens le message suivant à l’éxécution :
axelor_1 | Configuring app:properties
axelor_1 | grep: /usr/local/tomcat/webapps/ROOT/WEB-INF/classes/axelor-config.properties: No such file or directory
axelor_1 | /usr/local/bin/docker-entrypoint.sh: line 226: /usr/local/tomcat/webapps/ROOT/WEB-INF/classes/axelor-config.properties: No such file or directory

Voici le contenu de mon docker-compose.yml :
version: ‹ 3 ›

services:
axelor:
image: axelor/app-base-image
restart: always
ports:
- 8086:80
volumes:
- test_postgresql_app:/var/lib/postgresql
- test_postgresql_log:/var/log/postgresql
- test_tomcat_webapp:/var/lib/tomcat
- test_tomcat_log:/var/log/tomcat

volumes:
test_postgresql_app:
test_postgresql_log:
test_tomcat_webapp:
test_tomcat_log:

Y-a-t-il quelque chose que j’ai mal fait?

Merci d’avance.

you have to provide the application.properties which is mapped as axelor-config.properties

it needs to be either already present in war file, or you can give option via java options