728x90
git
-
gitlab & Jenkins 설치 명령어 정리설치&설정 관련/git 2022. 10. 7. 14:49
gitlab & Jenkins 설치 명령어 정리 CI/CD를 위한 초석으로 gitlab & jenkins를 설치하는 명령어를 정리 합니다. Gitlab 설치 명령어 # 시작전 업데이트 $ yum update -y # repository 등록 $ curl https://packages.GitLab.com/install/repositories/GitLab/GitLab-ce/script.rpm.sh | sudo bash # gitlab 설치 $ yum install -y gitlab-ce.x86_64 # postgresql client 필요로 설치 $ yum install -y postgresql # git 설치 $ yum install git -y 설정 명령어 # 데이터 디렉토리 생성 $ mdir /data..