Dear all,
I am playing by trying to understand and test the potential implementation of running Jira in a container
For that I have use the really small documentation from link :
https://hub.docker.com/r/atlassian/jira-software
I have notice that if I run the container using the simple command :
docker volume create --name jiraVolume
docker run -v jiraVolume:/var/atlassian/application-data/jira --name="jira" -d -p 8080:8080 atlassian/jira-software
Then my Jira instance is fully running and operational
But as long as I try to pass an environment like the memory size, the container is created but is not place in a running state
docker run -e JVM_MININUM_MEMORY=8182m -v jiraVolume:/var/atlassian/application-data/jira --name="jira" -d -p 8080:8080 atlassian/jira-software
Any idea what is wrong or how can run the container with passing environement ?
regards