Last active
November 9, 2015 23:00
-
-
Save alexproca/bda1fab3ecbe8bac7aed to your computer and use it in GitHub Desktop.
Docker compose intall jira 7
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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