I have a Docker container within a Tomcat server. I would like to access to the conf files of the server from the host. In this way, i tried to run my container with these options :
docker run -v /home/empty_dir:/usr/local/tomcat/conf test
The /conf directory is well created on the host but is empty and thus the server cannot start... So, I'm looking for a solution to populate my dir with the default conf file of the server in the container.