Last active
December 12, 2023 07:26
-
-
Save dasgoll/04b59a077a1834b61cf179aeab513ae1 to your computer and use it in GitHub Desktop.
Revisions
-
dasgoll revised this gist
Dec 12, 2023 . 1 changed file with 6 additions and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -22,4 +22,9 @@ docker exec -it gitlab cat /etc/gitlab/initial_root_password visit http://gitlab.local.gd:8080 root 1qdt6XfDUQjBvFS6Tj9YZx1FdW34FIHc3pTBtpZHsE= ## to reset password, get into the container gitlab-rake "gitlab:password:reset[root]" -
dasgoll revised this gist
Dec 10, 2023 . 1 changed file with 3 additions and 0 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -18,5 +18,8 @@ mkdir $GITLAB_HOME docker exec -it gitlab cat /etc/gitlab/initial_root_password visit http://gitlab.local.gd:8080 root 1qdt6XfDUQjBvFS6Tj9YZx1FdW34FIHc3pTBtpZHsE= -
dasgoll revised this gist
Dec 10, 2023 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -16,7 +16,7 @@ mkdir $GITLAB_HOME docker exec -it gitlab cat /etc/gitlab/initial_root_password root 1qdt6XfDUQjBvFS6Tj9YZx1FdW34FIHc3pTBtpZHsE= -
dasgoll revised this gist
Dec 10, 2023 . 1 changed file with 7 additions and 0 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -13,3 +13,10 @@ mkdir $GITLAB_HOME --volume $GITLAB_HOME/data:/var/opt/gitlab \ --shm-size 256m \ gitlab/gitlab-ee:latest docker exec -it ec61 cat /etc/gitlab/initial_root_password root 1qdt6XfDUQjBvFS6Tj9YZx1FdW34FIHc3pTBtpZHsE= -
dasgoll created this gist
Dec 10, 2023 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,15 @@ export GITLAB_HOME=~/gitlab mkdir $GITLAB_HOME docker run --detach \ --hostname gitlab.local.gd \ --publish 8080:80 \ --name gitlab \ --restart always \ --volume $GITLAB_HOME/config:/etc/gitlab \ --volume $GITLAB_HOME/logs:/var/log/gitlab \ --volume $GITLAB_HOME/data:/var/opt/gitlab \ --shm-size 256m \ gitlab/gitlab-ee:latest