Hello,
I'm build Jira in Docker container using this image:
https://github.com/codeclou/docker-atlassian-sdk
Jenkins command:
atlas-run-standalone --version 7.9.0 --product jira --http-port 2990
--server 0.0.0.0 --jvmargs -Xmx2024M -DskipAllPrompts=true
A huge amount of dependencies are downloaded every time it runs, it lasts for approximately 5 minutes or so, other components are built much faster.
Could I somehow tweak/cache dependencies to not need to wait Jira's downloading them every time I start Jenkins build?
Any advises will be appreciated,
Best Regards.
Hi @Egor Erofeev,
By using a shared volume.
docker volume create atlas-data
docker run -v atlas-data:/opt/atlas
This is assuming all data by atlas-run-standalone is being saved under /opt/atlas
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.