I'm in the process of setting up dockerised instances of the Atlassian tools, namely Jira-software.
With Bitbucket I am able to pass all the required setup properties (db settings, licence key, application name/hostname, admin account username/password etc) so that I just need to run:
docker container run + all the various options and arguments
And I have a fully setup and ready to use Bitbucket instance ready to accept the admin credentials I've passed the container. No extra setup required.
I've tried to do the same with Jira, following the Atlassian documentation on the docker hub site
I can pass db settings to the container with the following env vars:
ATL_DB_DRIVER= <DB_DRIVER>
ATL_JDBC_USER= <DB_USER>
ATL_JDBC_PASSWORD= <DB_PASSWORD>
ATL_JDBC_URL= <URL>
ATL_DB_TYPE= <TYPE>
But looking through the jira-software docker docs there doesn't seem to be a way to pass in the:
Application Title
Application URL
License key
Admin account details
Which means I then have to manually enter these details in the UI setup wizard. I've done some googling to see if anyone has addressed this problem but cannot find anything.
I'd appreciate if someone could point me in the right direction.
Many thanks
Joshua