{"id":19758709,"url":"https://github.com/robbinparrish/gitlab-deployment","last_synced_at":"2026-04-05T23:02:56.769Z","repository":{"id":271943940,"uuid":"760312095","full_name":"robbinparrish/gitlab-deployment","owner":"robbinparrish","description":"GitLab deployment","archived":false,"fork":false,"pushed_at":"2024-03-28T12:08:46.000Z","size":20,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-14T07:27:24.719Z","etag":null,"topics":["deployment","docker","docker-compose","docs","gitlab","gitlab-deployment","gitlab-runner","gitlab-server","learning","learning-projects","linux","notes","server-deployment"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/robbinparrish.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-02-20T07:20:57.000Z","updated_at":"2024-02-20T07:29:32.000Z","dependencies_parsed_at":"2025-01-10T23:00:26.871Z","dependency_job_id":null,"html_url":"https://github.com/robbinparrish/gitlab-deployment","commit_stats":null,"previous_names":["robbinparrish/gitlab-deployment"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/robbinparrish/gitlab-deployment","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/robbinparrish%2Fgitlab-deployment","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/robbinparrish%2Fgitlab-deployment/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/robbinparrish%2Fgitlab-deployment/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/robbinparrish%2Fgitlab-deployment/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/robbinparrish","download_url":"https://codeload.github.com/robbinparrish/gitlab-deployment/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/robbinparrish%2Fgitlab-deployment/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31452901,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-05T21:22:52.476Z","status":"ssl_error","status_checked_at":"2026-04-05T21:22:51.943Z","response_time":75,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["deployment","docker","docker-compose","docs","gitlab","gitlab-deployment","gitlab-runner","gitlab-server","learning","learning-projects","linux","notes","server-deployment"],"created_at":"2024-11-12T03:25:45.404Z","updated_at":"2026-04-05T23:02:56.752Z","avatar_url":"https://github.com/robbinparrish.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"## Disclaimer.\nThe content on this account/repository provided solely for educational and informational purposes.\nIt is not intended for use in making any kind of business, investment and/or legal decisions.\nAlthough every effort has been made to keep the information up-to-date and accurate, no representations and/or warranties, express and/or implied, completeness, accuracy, reliability, suitability, and/or availability of the content.\n\n## GitLab.\nThis can be used to setup a GitLab Server.  \nGitLab - https://about.gitlab.com/\n\n### Followings pre-configuration required before setup.\n- By default this configuration uses 22/SSH port and it is defined in the `docker-compose.yml` file.  \n  Make sure to check that this port does not conflicts with system.  \n  System default 22/SSH port if in use then it must be changed to something else in prior to make it work.\n- Update the external URLs for relevant domains in the `docker-compose.yml` file.\n  Change following according to the configurations.\n  `NOTE - Following domain names must be added to DNS and resolvable to IP address of the system.`\n    - external_url 'https://gitlab.mydomain.com'\n    - gitlab_rails['registry_host'] = \"gitlab-registry.mydomain.com\"\n    - gitlab_pages['auth_redirect_uri'] = \"https://projects.gitlab-pages.mydomain.com/auth\"\n    - pages_external_url \"https://gitlab-pages.mydomain.com/\"\n    - registry_external_url 'https://gitlab-registry.mydomain.com'\n- Email configuration for SMTP is by default disabled. If requires then it should be configured in the `docker-compose.yml` file.\n    - https://docs.gitlab.com/omnibus/settings/smtp.html\n- SSL Certificates Configurations.\n    - Currently this project uses single default self-signed SSL certificates for `*.mydomain.com` and it is used for all services.\n      Replace the SSL certificates in `configs/certs` directory.\n    - Update the relevant SSL certificates in the `docker-compose.yml` file.\n        - nginx['ssl_certificate'] = \"/etc/gitlab/ssl/gitlab.mydomain.com.crt\"\n        - nginx['ssl_certificate_key'] = \"/etc/gitlab/ssl/gitlab.mydomain.com.key\"\n        - pages_nginx['ssl_certificate'] = \"/etc/gitlab/ssl/gitlab.mydomain.com.crt\"\n        - pages_nginx['ssl_certificate_key'] = \"/etc/gitlab/ssl/gitlab.mydomain.com.key\"\n        - registry_nginx['ssl_certificate'] = \"/etc/gitlab/ssl/gitlab.mydomain.com.crt\"\n        - registry_nginx['ssl_certificate_key'] = \"/etc/gitlab/ssl/gitlab.mydomain.com.key\"\n\n## Docker Compose Version.\nAlways validate that [docker-compose](https://github.com/docker/compose/releases/) version is latest.\nIf not then use the latest released version. As of updating this document `v2.24.0` was latest released version.\n\n### Starting the container.\n```bash\ndocker-compose up -d\n```\n\n### Checking the container logs.\n```bash\ndocker-compose logs -f\n```\n\n### Once Container is successfully created, we can access the webui in the browser - http://IPADDR_OF_SYSTEM\n\n#### Retrieving the default password for default admin user `root`.\n```bash\ndocker-compose exec -it gitlab-server grep 'Password:' /etc/gitlab/initial_root_password\n```\n\n### Setting up first time.\n- https://docs.gitlab.com/\n- https://about.gitlab.com/releases/categories/releases/\n\n[Additional Configuration](./configs/additional-configs.md)\n\n[Backup and Restore](./configs/backup-and-restore.md)\n\n[Runner Setup](./runner-setup-configs/README.md)\n\n[Upgrading GitLab](./configs/upgrading-gitlab.md)\n\n[Registry Garbage Collection](./configs/registry-garbage-collection.md)\n\n[Use Image From Private Registry](./configs/use-image-from-private-registry.md)\n\n[Known Issues](./configs/known-issues.md)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frobbinparrish%2Fgitlab-deployment","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frobbinparrish%2Fgitlab-deployment","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frobbinparrish%2Fgitlab-deployment/lists"}