We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f9216f5 commit eef7d57Copy full SHA for eef7d57
docker/start.py
@@ -654,6 +654,10 @@ def main():
654
655
# Start Tomcat last.
656
logger.info("Starting Tomcat")
657
+ tomcat_temp = os.path.join(OPENGROK_DATA_ROOT, "tomcat_temp")
658
+ os.makedirs(tomcat_temp, exist_ok=True)
659
+ tomcat_env = os.environ
660
+ tomcat_env["CATALINA_TMPDIR"] = tomcat_temp
661
tomcat_popen = subprocess.Popen(
662
[os.path.join(tomcat_root, "bin", "catalina.sh"), "run"]
663
)
0 commit comments