{"id":16377940,"url":"https://github.com/themeinerlp/skinserver","last_synced_at":"2026-05-07T14:34:24.472Z","repository":{"id":46124775,"uuid":"352384478","full_name":"TheMeinerLP/SkinServer","owner":"TheMeinerLP","description":"A simple skin server written in spring boot and kotlin","archived":false,"fork":false,"pushed_at":"2024-02-22T08:12:03.000Z","size":221,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-04-16T00:16:24.447Z","etag":null,"topics":["hacktoberfest","hacktoberfest-accepted","hacktoberfest2022","minecraft","mojang-api","mongodb","server","skin","spring-boot","standalone-server"],"latest_commit_sha":null,"homepage":"https://themeinerlp.github.io/SkinServer/","language":"Kotlin","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/TheMeinerLP.png","metadata":{"files":{"readme":"readme.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-03-28T16:49:57.000Z","updated_at":"2024-12-24T19:34:39.000Z","dependencies_parsed_at":"2024-11-08T16:54:14.328Z","dependency_job_id":null,"html_url":"https://github.com/TheMeinerLP/SkinServer","commit_stats":null,"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/TheMeinerLP/SkinServer","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TheMeinerLP%2FSkinServer","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TheMeinerLP%2FSkinServer/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TheMeinerLP%2FSkinServer/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TheMeinerLP%2FSkinServer/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/TheMeinerLP","download_url":"https://codeload.github.com/TheMeinerLP/SkinServer/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TheMeinerLP%2FSkinServer/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32741700,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-07T02:14:30.463Z","status":"ssl_error","status_checked_at":"2026-05-07T02:14:29.405Z","response_time":62,"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":["hacktoberfest","hacktoberfest-accepted","hacktoberfest2022","minecraft","mojang-api","mongodb","server","skin","spring-boot","standalone-server"],"created_at":"2024-10-11T03:44:16.555Z","updated_at":"2026-05-07T14:34:24.422Z","avatar_url":"https://github.com/TheMeinerLP.png","language":"Kotlin","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Skin Server\n[![GitHub issues](https://img.shields.io/github/issues/TheMeinerLP/SkinServer)](https://github.com/TheMeinerLP/SkinServer/issues)\n[![GitHub forks](https://img.shields.io/github/forks/TheMeinerLP/SkinServer)](https://github.com/TheMeinerLP/SkinServer/network)\n[![GitHub stars](https://img.shields.io/github/stars/TheMeinerLP/SkinServer)](https://github.com/TheMeinerLP/SkinServer/stargazers)\n[![GitHub license](https://img.shields.io/github/license/TheMeinerLP/SkinServer)](https://github.com/TheMeinerLP/SkinServer/blob/master/LICENSE)\n\nThis is a simple skin server to downloading, pre-caching and rendering\n\n# Features:\n- Render a skin head based on a file\n- Render a skin/head based on uuid or username\n- Save skins into database for long-time cache\n- Token based IP Selection for mojang requests\n- **Dockerized**\n- **Kubernetes ready**\n\n# Installation with Docker\nRun this command to start a single instance with mongodb properties.\n```shell\ndocker run --name skinserver \\\n  -d \\\n  -e SPRING_DATA_MONGODB_AUTHENTICATION-DATABASE=admin \\\n  -e SPRING_DATA_MONGODB_DATABASE=skinserver \\\n  -e SPRING_DATA_MONGODB_HOST=127.0.0.1 \\\n  -e SPRING_DATA_MONGODB_PORT=27017 \\\n  -e SPRING_DATA_MONGODB_PASSWORD=YourPassword \\\n  -e SPRING_DATA_MONGODB_USERNAME=YourUsername \\\n  -e SKINSERVER_MAX-SIZE=512 \\\n  -e SKINSERVER_MIN-SIZE=16 \\\n  -e SKINSERVER_CONNECTION-ADDRESSES_0=127.0.0.1 \\\n  -p 8080:8080 \\\n   ghcr.io/themeinerlp/skinserver/skinserver:latest\n```\nModify your database, host, username and password for the mongodb server. \nOptional: Modify SKINSERVER_MIN/MAX-SIZE and extend your IP Address Range \n# Installation with Docker-Compose\nCopy the content below and paste it into a `docker-compose.yaml` file\n```yaml\nversion: '3.1'\nservices:\n  mongo:\n    image: mongo\n    restart: always\n    environment:\n      MONGO_INITDB_ROOT_USERNAME: YourUsername\n      MONGO_INITDB_ROOT_PASSWORD: YourPassword\n      MONGO_INITDB_DATABASE: SkinServer\n  skin-server:\n    image: ghcr.io/themeinerlp/skinserver/skinserver\n    restart: always\n    ports:\n      - 8080:8080\n    environment:\n      SPRING_DATA_MONGODB_AUTHENTICATION-DATABASE: admin\n      SPRING_DATA_MONGODB_DATABASE: SkinServer\n      SPRING_DATA_MONGODB_HOST: mongo\n      SPRING_DATA_MONGODB_PORT: 27017\n      SPRING_DATA_MONGODB_USERNAME: YourUsername\n      SPRING_DATA_MONGODB_PASSWORD: YourPassword\n      SKINSERVER_MAX-SIZE: 512\n      SKINSERVER_MIN-SIZE: 16\n      SKINSERVER_CONNECTION-ADDRESSES_0: 127.0.0.1\n```\nThen run following commands:\n```shell\ndocker-compose up -d \n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthemeinerlp%2Fskinserver","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fthemeinerlp%2Fskinserver","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthemeinerlp%2Fskinserver/lists"}