Last active
July 23, 2019 02:54
-
-
Save z3nth10n/425549fbcb38834e551aea7521f5b9b1 to your computer and use it in GitHub Desktop.
Installs Gitlab on a Debian (VM) as root
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 | |
apt-get update | |
apt-get install -y curl openssh-server ca-certificates | |
apt-get install -y postfix | |
curl https://packages.gitlab.com/install/repositories/gitlab/gitlab-ee/script.deb.sh | bash | |
EXTERNAL_URL="https://$1" apt-get install gitlab-ee | |
echo -e "\e[32mInstalled succesfully!" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment