{"id":15441724,"url":"https://github.com/mudler/dockerfiles","last_synced_at":"2025-10-26T19:42:34.482Z","repository":{"id":53670921,"uuid":"47561551","full_name":"mudler/dockerfiles","owner":"mudler","description":"Various app dockerfiles","archived":false,"fork":false,"pushed_at":"2025-10-06T08:56:14.000Z","size":9445,"stargazers_count":5,"open_issues_count":0,"forks_count":2,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-06T10:27:22.869Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","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/mudler.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2015-12-07T15:41:18.000Z","updated_at":"2025-10-06T08:56:17.000Z","dependencies_parsed_at":"2025-08-17T09:12:27.909Z","dependency_job_id":"8527834a-ce24-4acb-a558-f7a5a4e9194c","html_url":"https://github.com/mudler/dockerfiles","commit_stats":{"total_commits":26,"total_committers":2,"mean_commits":13.0,"dds":"0.23076923076923073","last_synced_commit":"1cab6b674b9e64d604899440c2fc7f00dbcdbd3e"},"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/mudler/dockerfiles","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mudler%2Fdockerfiles","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mudler%2Fdockerfiles/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mudler%2Fdockerfiles/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mudler%2Fdockerfiles/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mudler","download_url":"https://codeload.github.com/mudler/dockerfiles/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mudler%2Fdockerfiles/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":281163655,"owners_count":26454252,"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","status":"online","status_checked_at":"2025-10-26T02:00:06.575Z","response_time":61,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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-01T19:22:30.025Z","updated_at":"2025-10-26T19:42:34.477Z","avatar_url":"https://github.com/mudler.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Dockerfiles\n\nYet another stack of Dockerfiles!\n\n## Images\n\n\n| Image | Description | Usage |\n| --- | --- | --- |\n| `ghcr.io/mudler/dockerfiles/nvidia-kairos` | Nvidia l4t kairos image to run dockerized workload | [Nvidia Kairos](#nvidia-kairos) |\n| `ghcr.io/mudler/dockerfiles/nvidia-l4t-unsloth` | A ready to use image for fine-tuning | [Unsloth image](#unsloth-image) |\n| `ghcr.io/mudler/dockerfiles/github-runner` | Self-hosted GitHub Actions runner | [GitHub Runner](#github-runner) |\n| `ghcr.io/mudler/dockerfiles/kairos-wifi` | Kairos image with WiFi tools | [Kairos WiFi](#kairos-wifi) |\n| `ghcr.io/mudler/dockerfiles/openstam` | OpenStaManager application | [OpenStaManager](#openstamanager) |\n\n\n## Usage\n\n### Nvidia Kairos\n\nThe image's purpose is to be used as an OS image for [Kairos](https://kairos.io). If you have for instance an Nvidia device running with Kairos (e.g. [Nvidia AGX Orin](https://kairos.io/docs/installation/nvidia_agx_orin/)), all you have to do is to upgrade the OS image:\n\n```bash\nkairos-agent upgrade --source oci:ghcr.io/mudler/dockerfiles/nvidia-kairos:master\n```\n\nthe OS now will have docker installed and ready to use the GPU.\n\nAdditional tools added to the image:\n\n- `docker`\n- `jtop` (for stats monitoring)\n- `tmux`\n- `vim`\n\n### Unsloth image\n\nThe image is a ready to use image for fine-tuning models which works with Nvidia L4T devices (tested with Nvidia AGX Orin). It contains the following tools:\n\n- `unsloth` (current)\n- `torch` (2.5)\n- `torchvision` (2.5)\n- `torchaudio` (0.20) \n- `xformers` (current)\n- `jupyterlab`\n\nThe image is ready to use with the following command to run a console:\n\n```bash\ndocker run -ti --runtime nvidia --entrypoint /bin/bash --gpus all --rm -v $PWD/huggingface_cache:/root/.cache/huggingface/hub ghcr.io/mudler/dockerfiles/nvidia-l4t-unsloth:latest\n```\n\nYou can find training examples in `/work/examples`.\n\nTo start it with jupyter lab:\n\n```bash\ndocker run -ti --runtime nvidia -p 9090:9090 --gpus all --rm -v $PWD/huggingface_cache:/root/.cache/huggingface/hub ghcr.io/mudler/dockerfiles/nvidia-l4t-unsloth:latest\n```\n\nIt automatically starts jupyter lab, you can access it by opening the browser and going to `http://localhost:9090`.\n\n### GitHub Runner\n\nA self-hosted GitHub Actions runner image based on Ubuntu with Docker support. This image includes:\n\n- Docker CE\n- Git\n- Python 2/3\n- Common build tools (make, curl, jq)\n- Network utilities (ping, etc.)\n\nTo use as a self-hosted runner, configure it with your GitHub repository's runner token.\n\n### Kairos WiFi\n\nA Kairos-based image with WiFi management tools. Based on openSUSE Leap with Kairos, it includes:\n\n- `iw` (wireless device configuration)\n- `wpa_supplicant` (WiFi authentication)\n\nUse this image when you need WiFi capabilities in your Kairos deployment.\n\n### OpenStaManager\n\nA complete OpenStaManager application image based on PHP 8.1 with Apache. This image includes:\n\n- PHP 8.1 with Apache\n- OpenStaManager v2.6.1 pre-installed\n- All required PHP extensions (GD, MySQL, MongoDB, etc.)\n- Composer for dependency management\n\nTo run the application:\n\n```bash\ndocker run -d -p 8080:80 ghcr.io/mudler/dockerfiles/openstam:latest\n```\n\nAccess the application at `http://localhost:8080`.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmudler%2Fdockerfiles","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmudler%2Fdockerfiles","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmudler%2Fdockerfiles/lists"}