Atlas-run in CircleCI

I’m trying to run Jira Server with atlas-run in a CircleCI step to run some tests but it stops right after it starts.

[INFO] jira started successfully in 112s at http://localhost:2990/jira
[INFO] Type Ctrl-C to shutdown gracefully
[INFO] jira: Shutting down
[INFO] using codehaus cargo v1.6.10

Has anyone tried to do that?
I read it could be cause by memory issues.

Hi @lorenzo, I’m currently experiencing the same behavior when running Jira inside a maven docker host with adoptopenjdk-8 (also tried other java runtimes with same behavior). Have you ever figured out what went wrong in your installation?
Best regards,
Tobias

Hey @TobiasHeide, sorry for the delay.

I ended up running atlas-standalone in another Docker container.
If it helps, I built this image Docker.
If you are also using CircleCI I might be able to help you further, let me know.

Dear @lorenzo, I actually resolved the issue in the meantime. Problem was, that the maven process was reading from STDIN, which seems to be forbidden in Docker (or docker-compose, which I use on top) by default. I changed the configuration to allow reads from STDIN and now everything is running smoothly.

1 Like