I have a spring boot java application running inside a docker container. I configured logback in the application. Where i can access the generated logs? The configured path is:
<property name="LOG_PATH" value="logs"/>
I am currently checking logs using: docker logs containerName --follow But this command return the current logs from the last time the application was started. How can i check the rolling logs or archived ones.
Is there a way to create a volume for logback logs?