{"id":18878811,"url":"https://github.com/rwanyoike/srb2kart-server-docker","last_synced_at":"2025-04-14T18:54:27.451Z","repository":{"id":72150752,"uuid":"297287676","full_name":"rwanyoike/srb2kart-server-docker","owner":"rwanyoike","description":"🏁 Containerized version of SRB2Kart, a kart racing mod based on Sonic Robo Blast 2","archived":false,"fork":false,"pushed_at":"2024-11-15T11:40:11.000Z","size":175,"stargazers_count":4,"open_issues_count":0,"forks_count":4,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-03-28T07:22:19.298Z","etag":null,"topics":["container-image","docker","game-server","podman","srb2","srb2kart"],"latest_commit_sha":null,"homepage":"","language":"Dockerfile","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/rwanyoike.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","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":"2020-09-21T09:13:05.000Z","updated_at":"2025-01-09T19:57:28.000Z","dependencies_parsed_at":null,"dependency_job_id":"1a29b7f1-a97a-4cba-ae78-729cf4207575","html_url":"https://github.com/rwanyoike/srb2kart-server-docker","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rwanyoike%2Fsrb2kart-server-docker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rwanyoike%2Fsrb2kart-server-docker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rwanyoike%2Fsrb2kart-server-docker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rwanyoike%2Fsrb2kart-server-docker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rwanyoike","download_url":"https://codeload.github.com/rwanyoike/srb2kart-server-docker/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248942391,"owners_count":21186945,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["container-image","docker","game-server","podman","srb2","srb2kart"],"created_at":"2024-11-08T06:30:16.821Z","updated_at":"2025-04-14T18:54:27.444Z","avatar_url":"https://github.com/rwanyoike.png","language":"Dockerfile","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Sonic Robo Blast 2 Kart Server\n\n[![GitHub Actions](https://img.shields.io/github/actions/workflow/status/rwanyoike/srb2kart-server-docker/docker-image.yml?branch=main)\n](https://github.com/rwanyoike/srb2kart-server-docker/actions/workflows/docker-image.yml?query=branch%3Amain)\n[![GitHub License](https://img.shields.io/github/license/rwanyoike/srb2kart-server-docker)\n](LICENSE.txt)\n[![Docker Image Version](https://img.shields.io/docker/v/rwanyoike/srb2kart-server)](https://hub.docker.com/r/rwanyoike/srb2kart-server)\n[![Docker Image Size](https://img.shields.io/docker/image-size/rwanyoike/srb2kart-server)](https://hub.docker.com/r/rwanyoike/srb2kart-server)\n\n\u003e Containerized version of SRB2Kart.\n\n![SRB2Kart](assets/unknown.jpg)\n\nA containerized version of [SRB2Kart](https://mb.srb2.org/showthread.php?t=43708), a kart racing mod based on the 3D Sonic the Hedgehog fangame [Sonic Robo Blast 2](https://srb2.org/), which is based on a modified version of [Doom Legacy](http://doomlegacy.sourceforge.net/). You can use it to run a dedicated SRB2Kart netgame server.\n\n## Usage\n\nTo start the SRB2Kart dedicated netgame server on port `5029/udp`, run:\n\n```shell\ndocker run --name srb2kart-server -p 5029:5029/udp docker.io/rwanyoike/srb2kart-server:latest\n```\n\n### Data Directory\n\nThe `~/.srb2kart` directory is linked to `/data` inside the container. You can mount a directory from your host (containing configuration files, mods, etc.) to the `/data` directory in the container.\n\nFor example, create a directory on your host with the necessary files:\n\n```shell\n$ tree host-srb2kart-data/\nhost-srb2kart-data\n├── addons\n│   ├── kl_xxx.pk3\n│   ├── kl_xxx.wad\n│   └── kr_xxx.pk3\n└── kartserv.cfg\n\n1 directory, 4 files\n```\n\n\u003e The container runs as a non-root user `1000:1000`. Ensure the mounted directory is writable by this user.\n\nTo run the server with your custom data, use:\n\n```shell\ndocker run --name srb2kart-server \\\n    -p 5029:5029/udp \\\n    -v ./host-srb2kart-data:/data \\\n    docker.io/rwanyoike/srb2kart-server:latest \\\n    srb2kart \\\n    -dedicated \\\n    -file \\\n    addons/kl_xxx.pk3 \\\n    addons/kl_xxx.wad \\\n    addons/kr_xxx.pk3\n```\n\n## Build\n\nTo build the container, follow these steps:\n\n```shell\n# Clone the repository\ngit clone https://github.com/rwanyoike/srb2kart-server-docker\n# Navigate to the project directory\ncd srb2kart-server-docker\n# Build the container\ndocker build -t srb2kart-server:\u003cversion\u003e .\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frwanyoike%2Fsrb2kart-server-docker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frwanyoike%2Fsrb2kart-server-docker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frwanyoike%2Fsrb2kart-server-docker/lists"}