Created
June 4, 2021 23:10
-
-
Save LinuxlinkedBD/959943f520eca6b6ebfa6b2cb09c7359 to your computer and use it in GitHub Desktop.
How to install GitBucket
This file contains 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
If you need complete GitBucket setup, ping me on below contacts: | |
Telegram: linuxlinked | |
email: [email protected] | |
WhatsApp: +8801720903155 | |
Skype:live:.cid.c0dc316b9d727d5e | |
YouTube: https://youtu.be/D2mZ9mWqNMo | |
######################################################################################################################################## | |
#!/bin/bash | |
sudo apt-get update | |
sudo apt update | |
sudo apt-get install software-properties-common | |
sudo apt update | |
sudo add-apt-repository ppa:git-core/ppa | |
apt-get install default-jdk -y | |
java -version | |
groupadd -g 555 gitbucket | |
useradd -g gitbucket --no-user-group --home-dir /opt/gitbucket --no-create-home --shell /usr/sbin/nologin --system --uid 555 gitbucket | |
#BROWSE TO https://YOUR_DOMAIN_NAME |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment