{"id":13409026,"url":"https://github.com/hardpixel/dokku-gitlab","last_synced_at":"2026-03-06T15:32:24.811Z","repository":{"id":69159792,"uuid":"205603601","full_name":"hardpixel/dokku-gitlab","owner":"hardpixel","description":"Run official GitLab docker image on Dokku PaaS","archived":false,"fork":false,"pushed_at":"2021-05-06T00:00:35.000Z","size":6,"stargazers_count":11,"open_issues_count":0,"forks_count":4,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-07-02T09:09:52.134Z","etag":null,"topics":["docker","dokku","gitlab","omnibus"],"latest_commit_sha":null,"homepage":null,"language":"Dockerfile","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/hardpixel.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":"2019-08-31T22:41:55.000Z","updated_at":"2025-03-01T11:24:20.000Z","dependencies_parsed_at":null,"dependency_job_id":"8a1d5caa-eacf-45bd-a6df-813ae0fd9df4","html_url":"https://github.com/hardpixel/dokku-gitlab","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/hardpixel/dokku-gitlab","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hardpixel%2Fdokku-gitlab","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hardpixel%2Fdokku-gitlab/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hardpixel%2Fdokku-gitlab/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hardpixel%2Fdokku-gitlab/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hardpixel","download_url":"https://codeload.github.com/hardpixel/dokku-gitlab/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hardpixel%2Fdokku-gitlab/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30183472,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-06T14:42:24.748Z","status":"ssl_error","status_checked_at":"2026-03-06T14:42:14.925Z","response_time":250,"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":["docker","dokku","gitlab","omnibus"],"created_at":"2024-07-30T20:00:57.412Z","updated_at":"2026-03-06T15:32:24.790Z","avatar_url":"https://github.com/hardpixel.png","language":"Dockerfile","readme":"Dokku GitLab\n============\n\nInstructions for installing [GitLab](https://gitlab.com) as a [Dokku](http://dokku.viewdocs.io/dokku) application, using the official [GitLab CE](https://hub.docker.com/_/gitlab-community-edition) Docker image.\n\n\nSetup application\n-----------------\n\nCreate dokku application:\n\n```\ndokku apps:create gitlab\n```\n\nCreate storage folders:\n\n```\nmkdir -p /home/storage/gitlab/data\nmkdir -p /home/storage/gitlab/logs\nmkdir -p /home/storage/gitlab/config\n```\n\nMount storage folders:\n\n```\ndokku storage:mount gitlab /home/storage/gitlab/config:/etc/gitlab\ndokku storage:mount gitlab /home/storage/gitlab/logs:/var/log/gitlab\ndokku storage:mount gitlab /home/storage/gitlab/data:/var/opt/gitlab\n```\n\nSet proxy ports map and docker options:\n\n```\ndokku proxy:ports-set gitlab http:80:80\ndokku docker-options:add gitlab deploy '-p 2222:22'\n```\n\nEdit configuration\n------------------\n\nCreate `gitlab.rb` in `/home/storage/gitlab/config` and add the following settings:\n\n```ruby\n# GitLab URL\n##! URL on which GitLab will be reachable.\n##! For more details on configuring external_url see:\n##! https://docs.gitlab.com/omnibus/settings/configuration.html#configuring-the-external-url-for-gitlab\nexternal_url 'https://gitlab.example.com'\n\n##! **Override only if you use a reverse proxy**\n##! Docs: https://docs.gitlab.com/omnibus/settings/nginx.html#setting-the-nginx-listen-port\nnginx['listen_port'] = 80\n\n##! **Override only if your reverse proxy internally communicates over HTTP**\n##! Docs: https://docs.gitlab.com/omnibus/settings/nginx.html#supporting-proxied-ssl\nnginx['listen_https'] = false\n```\n\nDeploy application\n------------------\n\nClone this repository and push it to your dokku server:\n\n```\ngit clone https://github.com/hardpixel/dokku-gitlab.git\ncd dokku-gitlab\n\ngit remote add dokku dokku@example.com:gitlab\ngit push dokku master\n```\n\nEnable SSL\n----------\n\nGenerate LetsEncrypt certificates:\n\n```\ndokku letsencrypt gitlab\n```\n\nConfigure GIT\n-------------\n\nUpdate `ssh` config, located at `~/.ssh/config`, on your local machine:\n\n```\nHost gitlab.example.com\n    Port 2222\n```\n\nReconfigure GitLab\n------------------\n\nConnect to the gitlab app container:\n\n```\ndokku enter gitlab\ngitlab-ctl reconfigure\n```\n\nOr run the command from outside the app container:\n\n```\ndokku run gitlab gitlab-ctl reconfigure\n```\n\nUpdate GitLab\n-------------\n\nBefore updating you have to stop the running container or the update will fail.\n\n```\ndokku ps:stop gitlab\ndocker pull gitlab/gitlab-ce\ndokku ps:rebuild gitlab\n```\n","funding_links":[],"categories":["Development"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhardpixel%2Fdokku-gitlab","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhardpixel%2Fdokku-gitlab","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhardpixel%2Fdokku-gitlab/lists"}