Skip to content

Instantly share code, notes, and snippets.

@alexproca
Last active November 9, 2015 23:00
Show Gist options
  • Save alexproca/bda1fab3ecbe8bac7aed to your computer and use it in GitHub Desktop.
Save alexproca/bda1fab3ecbe8bac7aed to your computer and use it in GitHub Desktop.
Docker compose intall jira 7
#!/bin/bash
cd /tmp
apt-get install wget -y
wget https://www.atlassian.com/software/jira/downloads/binary/atlassian-jira-software-7.0.0-jira-7.0.0-x64.bin
chmod +x /tmp/atlassian-jira-software-7.0.0-jira-7.0.0-x64.bin
echo "executeLauncherAction$Boolean=true" > unattended
echo "app.install.service$Boolean=true" >> unattended
echo "sys.confirmedUpdateInstallationString=false" >> unattended
echo "existingInstallationDir=/usr/local/JIRA Software" >> unattended
echo "sys.languageId=en" >> unattended
echo "sys.installationDir=/opt/atlassian/jira" >> unattended
/tmp/atlassian-jira-software-7.0.0-jira-7.0.0-x64.bin -q -varfile unattended
sleep infinity
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment