Christian Kotte
Christian Kotte
The docker-compose.yml needs to be adjusted. You need to specify _CATALINA_PARAMETER1_, _CATALINA_PARAMETER_VALUE1_, and so on to set the _CATALINA_OPTS_. For Jira it's _JVM_MINIMUM_MEMORY_ and _JVM_MAXIMUM_MEMORY_. The default configuration if you...
Looks like Jira uses the JAVA_OPTS environment variable. You can check this in /opt/jira/bin/setenv.sh in the Docker container. You need to specify: ``` environment: JIRA_DATABASE_URL: JIRA_DB_PASSWORD: SETENV_JVM_MINIMUM_MEMORY: 1024m SETENV_JVM_MAXIMUM_MEMORY: 1024m...
The Confluence image is fine. -Xmx1024m, -Xms1024m, and -XX:+UseG1GC are still configured via _CATALINA_OPTS_ in _/opt/atlassian/confluence/bin/setenv.sh_. -XX:MaxPermSize is not set at all.
I prefer one email for a PR instead of three. It's also annoying that you get a single email for every single code comment, but I assume this is a...
Looks like you can create a custom css: https://linuxcool.net/en/instructions/how-to-change-the-system-frame-in-vivaldi-to-match-the-gtk-linux-theme/
looks like you need to implement this Google API key thing: https://www.alfredforum.com/topic/9822-translate-workflow/. Would be really nice because with the other workflow I can only translate to one target language..
Is there a message passed to the program as a parameter?
Wouldn't is be possible to just duplicate ```result_sink_system_email.go``` and change ```execResult, err := common.ExecAndWait([]string{"sendmail", rec.Job.User}, msgBytes)``` and replace ```rec.Job.User``` with the recipient parameter?
I created a job where the command errors every time. However, the job doesn't never fails. It should eventually fail if ```onError``` is set to ```Backoff```, righ? I configured it...
This should work also with other distributions: **Dockerfile** ``` FROM alpine:3.12 MAINTAINER Christian Kotte # build parameters ARG JOBBER_VERSION=1.4.4 # Image Build Date By Buildsystem ARG BUILD_DATE=undefined RUN export JOBBER_HOME=/tmp/jobber...