-
For our testing environments we run janssen in docker over the monolith. |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 5 replies
-
I could figure out that it seems to be the /opt/jetty-11.0 folder that grows, 80% of it is in the /opt/jetty-11.0/temp folder. |
Beta Was this translation helpful? Give feedback.
-
BTW, the monolith is just for testing. We have no such issues with a proper cloud deployment. |
Beta Was this translation helpful? Give feedback.
-
I did two small things to prevent container size growth after a restart (or stop/start)
The second only contributes minimally to the size grows, but having easy access to the logs from the host is something I want to be able todo anyway. |
Beta Was this translation helpful? Give feedback.
I did two small things to prevent container size growth after a restart (or stop/start)
command: bash -c "rm -rf /opt/jetty-11.0/temp/*;exec /app/scripts/entrypoint.sh"
volumes:
The second only contributes minimally to the size grows, but having easy ac…