Hello amazing Atlassian community! :)
I'm wondering if anyone in the community has a Mac running M1 chip and using Jira inside docker. Since I am fairly new to the new ARM processor I'm unable to run jira in docker any longer.
Tried to add the parameter --platform = linux/amd64 to both my docker-compose script and the image builder but Jira does not start in both. Looking at Docker dashboard a warning message appears that this application is amd64 based and cannot use the ARM library.
Was wondering how others solved this if they want to have a local docker container for demo and testing purposes.
Cheers!
Nader
I had to do a lot of changes but I actually got it to work
For those of you who are interested there is a docker image using Jira 8.5
Additionally I have found an open FR ticket for native Jira on ARM
https://jira.atlassian.com/browse/JRASERVER-71407
vote if you are also interested as myself :)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks for the recommendation!
I'm using this compose file I found on GitHub (https://github.com/EugenMayer/docker-image-atlassian-jira )
Only changed the image to what you suggested in the compose file and it's all I needed.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
If you need latest version of Jira (in my case 8.21.0), you can build a custom image from https://bitbucket.org/dchevell/docker-atlassian-jira-arm64
The Dockerfile uses a base image adoptopenjdk:8-hotspot, you can update to adoptopenjdk:11-hotspot.
There is a dependency to atlassian-shared-components, checkout commit bbfb0cfaed3967383a2b15e30dd05a65842c8d3f
Enjoy.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I am unable to access the repository due to accesss restriction :(
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You have to use it like:
docker run --platform linux/amd64 --name jira -d -p 8080:8080 atlassian/jira-software:8
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@viktorianerjust by adding this flag doesn't fix the immediate issue as jira does not start. It halts at some point during running the startup scripts and goes into dead-lock state (at least when i tried on my mac)
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.