{"id":15493637,"url":"https://github.com/gridhead/centos-cdrsrv","last_synced_at":"2026-01-16T12:34:38.565Z","repository":{"id":104874214,"uuid":"352543500","full_name":"gridhead/centos-cdrsrv","owner":"gridhead","description":"A self-hosted Code server with preinstalled Git on CentOS 8","archived":false,"fork":false,"pushed_at":"2021-07-06T07:35:16.000Z","size":23,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-12-13T09:54:07.226Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://hub.docker.com/r/t0xic0der/cdrsrv","language":"Dockerfile","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/gridhead.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2021-03-29T06:48:08.000Z","updated_at":"2021-03-29T07:44:27.000Z","dependencies_parsed_at":"2023-08-28T11:00:54.760Z","dependency_job_id":null,"html_url":"https://github.com/gridhead/centos-cdrsrv","commit_stats":null,"previous_names":["gridhead/centos-cdrsrv"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/gridhead/centos-cdrsrv","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gridhead%2Fcentos-cdrsrv","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gridhead%2Fcentos-cdrsrv/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gridhead%2Fcentos-cdrsrv/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gridhead%2Fcentos-cdrsrv/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gridhead","download_url":"https://codeload.github.com/gridhead/centos-cdrsrv/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gridhead%2Fcentos-cdrsrv/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28478683,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-16T11:59:17.896Z","status":"ssl_error","status_checked_at":"2026-01-16T11:55:55.838Z","response_time":107,"last_error":"SSL_read: 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":[],"created_at":"2024-10-02T08:08:30.536Z","updated_at":"2026-01-16T12:34:38.532Z","avatar_url":"https://github.com/gridhead.png","language":"Dockerfile","funding_links":[],"categories":[],"sub_categories":[],"readme":"# centos-cdrsrv\nA self-hosted Code server with preinstalled Git on CentOS 8\n\n## Releases\n\n### v3.9.2\n\n#### Release\n\nThe release can be found [here](https://hub.docker.com/layers/t0xic0der/cdrsrv/v3.9.2-centos8/images/sha256-eecc6ef3c6c3bb9446ef78df63d4270a7dd6ff68a26185a33dfa21d2e4fb078e?context=repo).\n\n#### Usage\n\nRun the following command.\n\n```\ndocker run -d \\\n  -p 4444:4444 \\\n  -v \u003cpath/to/workspace\u003e:/data \\\n  --name centos-cdrsrv \\\n  --restart unless-stopped \\\n  t0xic0der/cdrsrv:v3.9.2-centos8\n```\n\n#### Dockerfile\n\n```\nFROM centos:latest\nWORKDIR /data\nRUN dnf install wget git -y\nRUN wget https://github.com/cdr/code-server/releases/download/v3.9.2/code-server-3.9.2-arm64.rpm\nRUN dnf remove wget -y\nRUN dnf install code-server-3.9.2-arm64.rpm -y\nRUN rm code-server-3.9.2-arm64.rpm\nENTRYPOINT [\"code-server\", \"--bind-addr\", \"0.0.0.0:4444\", \"--auth\", \"none\"]\nEXPOSE 4444\n```\n\n### v3.9.1\n\n#### Release\n\nThe release can be found [here](https://hub.docker.com/layers/t0xic0der/cdrsrv/v3.9.1-centos8/images/sha256-641f34c76435828d09ae2063b4e9c7fcec5b158753da827e0a5e5e23d30f433e?context=repo).\n\n#### Usage\n\nRun the following command.\n\n```\ndocker run -d \\\n  -p 4444:4444 \\\n  -v \u003cpath/to/workspace\u003e:/data \\\n  --name centos-cdrsrv \\\n  --restart unless-stopped \\\n  t0xic0der/cdrsrv:v3.9.1-centos8\n```\n\n#### Dockerfile\n\n```\nFROM centos:latest\nWORKDIR /data\nRUN dnf install wget git -y\nRUN wget https://github.com/cdr/code-server/releases/download/v3.9.1/code-server-3.9.1-arm64.rpm\nRUN dnf remove wget -y\nRUN dnf install code-server-3.9.1-arm64.rpm -y\nRUN rm code-server-3.9.1-arm64.rpm\nENTRYPOINT [\"code-server\", \"--bind-addr\", \"0.0.0.0:4444\", \"--auth\", \"none\"]\nEXPOSE 4444\n```\n\n### v3.9.0\n\n#### Release\n\nThe release can be found [here](https://hub.docker.com/layers/t0xic0der/cdrsrv/v3.9.0-centos8/images/sha256-9ce968caa933948ebe79db3885857df83ccf8d464a5395e6d1b2888ad59cbfa5?context=repo).\n\n#### Usage\n\nRun the following command.\n\n```\ndocker run -d \\\n  -p 4444:4444 \\\n  -v \u003cpath/to/workspace\u003e:/data \\\n  --name centos-cdrsrv \\\n  --restart unless-stopped \\\n  t0xic0der/cdrsrv:v3.9.0-centos8\n```\n\n#### Dockerfile\n\n```\nFROM centos:latest\nWORKDIR /data\nRUN dnf install wget git -y\nRUN wget https://github.com/cdr/code-server/releases/download/v3.9.0/code-server-3.9.0-arm64.rpm\nRUN dnf remove wget -y\nRUN dnf install code-server-3.9.0-arm64.rpm -y\nRUN rm code-server-3.9.0-arm64.rpm\nENTRYPOINT [\"code-server\", \"--bind-addr\", \"0.0.0.0:4444\", \"--auth\", \"none\"]\nEXPOSE 4444\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgridhead%2Fcentos-cdrsrv","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgridhead%2Fcentos-cdrsrv","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgridhead%2Fcentos-cdrsrv/lists"}