Skip to content

Instantly share code, notes, and snippets.

@z3nth10n
Last active July 23, 2019 02:54
Show Gist options
  • Save z3nth10n/425549fbcb38834e551aea7521f5b9b1 to your computer and use it in GitHub Desktop.
Save z3nth10n/425549fbcb38834e551aea7521f5b9b1 to your computer and use it in GitHub Desktop.
Installs Gitlab on a Debian (VM) as root
#!/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