I'm trying to deploy Jira DC on dockers, and i can't find a way to configure jira-config.properties.
Some of the configurations i use at this moment are these:
jira.lf.date.relativize = false
jira.export.excel.enabled = true
jira.index.issue.threads = 40
upgrade.reindex.allowed=false
For any of those that are trying to configure jira-config.properties on a Fargate configuration, the best answer is to use a "sidecar".
See the next link:
https://kichik.com/2020/09/10/mounting-configuration-files-in-fargate/
One option of doing this is by mounting jira.properties as a volume. Check out this article on how this can be done:
https://confluence.atlassian.com/jirakb/how-to-customize-files-inside-a-jira-docker-container-1026533922.html
Dylan.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
i thought that you can only mount directories.
It seems that this should work fine
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hey @Marcelo Mella you can do both, Docker Volume is a complex topic. You can read up on that here https://docs.docker.com/engine/reference/run/#volume-shared-filesystems and here https://docs.docker.com/storage/volumes/
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks @Sebastian Schmidt , to add one more complexity, i'm using AWS Fargate.
I can't mount a single file from a EFS, so i'm raising a support ticket on AWS to ask for some help
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.