{"id":18015196,"url":"https://github.com/caroga/teeworlds-docker-server","last_synced_at":"2026-05-18T17:04:09.524Z","repository":{"id":73334924,"uuid":"197078870","full_name":"Caroga/teeworlds-docker-server","owner":"Caroga","description":"Basic alpine based Teeworlds server in docker","archived":false,"fork":false,"pushed_at":"2019-07-18T18:28:45.000Z","size":13,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-07-06T08:06:15.504Z","etag":null,"topics":["docker","game-server","teeworlds"],"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/Caroga.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-07-15T22:07:15.000Z","updated_at":"2020-04-29T11:27:13.000Z","dependencies_parsed_at":null,"dependency_job_id":"b94dfbae-ae7a-4aa0-ae39-2b35f2a60662","html_url":"https://github.com/Caroga/teeworlds-docker-server","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Caroga/teeworlds-docker-server","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Caroga%2Fteeworlds-docker-server","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Caroga%2Fteeworlds-docker-server/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Caroga%2Fteeworlds-docker-server/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Caroga%2Fteeworlds-docker-server/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Caroga","download_url":"https://codeload.github.com/Caroga/teeworlds-docker-server/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Caroga%2Fteeworlds-docker-server/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33184769,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-18T09:27:30.708Z","status":"ssl_error","status_checked_at":"2026-05-18T09:27:28.300Z","response_time":71,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5: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","game-server","teeworlds"],"created_at":"2024-10-30T04:12:30.651Z","updated_at":"2026-05-18T17:04:09.492Z","avatar_url":"https://github.com/Caroga.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"## teeworlds-docker-server\nBasic alpine based Teeworlds server in docker\n\n[\u003cimg src=\"https://img.shields.io/docker/cloud/build/caroga/teeworlds-docker-server.svg?style=for-the-badge\"\u003e](https://hub.docker.com/r/caroga/teeworlds-docker-server)\n[\u003cimg src=\"https://img.shields.io/docker/pulls/caroga/teeworlds-docker-server.svg?style=for-the-badge\"\u003e](https://hub.docker.com/r/caroga/teeworlds-docker-server)\n[\u003cimg src=\"https://img.shields.io/microbadger/layers/caroga/teeworlds-docker-server.svg?style=for-the-badge\"\u003e](https://hub.docker.com/r/caroga/teeworlds-docker-server)\n\n\n**Things to do:**\n- documentation, documentation, documentation\n\n**Things done:**\n- ~~Add support for environment settings~~\n- ~~Write a docker-compose.yml quickstart~~ \n- ~~make image smaller~~ Worked! [![](https://images.microbadger.com/badges/image/caroga/teeworlds-docker-server.svg)](https://microbadger.com/images/caroga/teeworlds-docker-server)\n- ~~Get the process to stop by sending SIGTERM~~\n\n# Docker-compose\nSimply copy the contents from [docker-compose.yml](docker-compose.yml) locally and run it:\n\n*Docker-compose with all server options*\n```yml\nversion: '3.4'\nservices:\n  server:\n    image: \"caroga/teeworlds-docker-server:latest\"\n    ports:\n      - \"8303:8303/udp\"\n    environment:\n      - SV_NAME=Prutsers United Game Server\n      - SV_MAX_CLIENTS=12\n      - SV_MAX_CLIENTS_PER_IP=12\n      - SV_HIGH_BANDWIDTH=0\n      - SV_REGISTER=1\n      - SV_MAP=dm1\n      - SV_RCON_PASSWORD=jehoofd123\n      - PASSWORD=appel\n      - SV_RCON_MAX_TRIES=3\n      - SV_RCON_BANTIME=5\n      - SV_WARMUP=0\n      - SV_SCORELIMIT=20\n      - SV_TIMELIMIT=0\n      - SV_GAMETYPE=dm\n      - SV_MAPROTATION=dm1,dm2,dm3\n      - SV_ROUNDS_PER_MAP=3\n      - SV_MOTD=Welcome to the Local server!\n      - SV_PLAYER_SLOTS=8\n      - SV_TEAMBALANCE_TIME=1\n      - SV_SPAMPROTECTION=1\n      - SV_TOURNAMENT_MODE=0\n      - SV_PLAYER_READY_MODE=0\n      - SV_STRICT_SPECTATE_MODE=0\n      - SV_SILENT_SPECTATOR_MODE=1\n      - SV_SKILL_LEVEL=1\n      - SV_RESPAWN_DELAY_TDM=3\n      - SV_TEAMDAMAGE=0\n      - SV_POWERUPS=1\n      - SV_RESPAWN_DELAY_TDM=1\n      - SV_VOTE_KICK=1\n      - SV_VOTE_KICK_BANTIME=5\n      - SV_VOTE_KICK_MIN=0\n      - SV_INACTIVEKICK_TIME=3\n      - SV_INACTIVEKICK=1\n      - SV_VOTE_SPECTATE=1\n      - SV_VOTE_SPECTATE_REJOINDELAY=3\n\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcaroga%2Fteeworlds-docker-server","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcaroga%2Fteeworlds-docker-server","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcaroga%2Fteeworlds-docker-server/lists"}