{"id":28493056,"url":"https://github.com/hhftechnology/alpine-seanime","last_synced_at":"2026-01-28T09:36:44.473Z","repository":{"id":270816476,"uuid":"911540000","full_name":"hhftechnology/alpine-seanime","owner":"hhftechnology","description":"A lightweight Docker image for Seanime, built on Alpine Linux.","archived":false,"fork":false,"pushed_at":"2025-01-03T09:49:10.000Z","size":14,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-08T05:40:33.455Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Dockerfile","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/hhftechnology.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,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2025-01-03T09:00:35.000Z","updated_at":"2025-05-18T05:43:02.000Z","dependencies_parsed_at":"2025-01-03T10:34:28.865Z","dependency_job_id":null,"html_url":"https://github.com/hhftechnology/alpine-seanime","commit_stats":null,"previous_names":["hhftechnology/alpine-seanime"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/hhftechnology/alpine-seanime","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hhftechnology%2Falpine-seanime","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hhftechnology%2Falpine-seanime/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hhftechnology%2Falpine-seanime/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hhftechnology%2Falpine-seanime/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hhftechnology","download_url":"https://codeload.github.com/hhftechnology/alpine-seanime/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hhftechnology%2Falpine-seanime/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28843948,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-28T07:39:25.367Z","status":"ssl_error","status_checked_at":"2026-01-28T07:39:24.487Z","response_time":57,"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":[],"created_at":"2025-06-08T09:07:23.076Z","updated_at":"2026-01-28T09:36:44.465Z","avatar_url":"https://github.com/hhftechnology.png","language":"Dockerfile","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Alpine Seanime Docker Image\n\nA lightweight Docker image for Seanime, built on Alpine Linux.\n\n[![Docker Image CI/CD](https://github.com/hhftechnology/alpine-seanime/actions/workflows/docker-publish.yml/badge.svg?branch=main)](https://github.com/hhftechnology/alpine-seanime/actions/workflows/docker-publish.yml)\n\n## 🚀 Quick Start\n\n```bash\ndocker run -d \\\n  --name seanime \\\n  -p 43211:43211 \\\n  -p 43213:43213 \\\n  -p 43214:43214 \\\n  -p 8080:8080 \\\n  -p 6881:6881 \\\n  -p 6881:6881/udp \\\n  -p 10000:10000 \\\n  -v ./config/seanime:/home/seanime/.config/Seanime \\\n  -v ./config/qBittorrent:/home/seanime/.config/qBittorrent \\\n  -v ./downloads:/home/seanime/Downloads \\\n  hhftechnology/alpine-seanime\n```\n\n## 📦 Included Components\n\n- **Seanime**: v2.5.2\n- **qBittorrent-nox**: For torrent management\n- **MPV**: Media player support\n- **FFmpeg**: Media processing\n\n## 🔌 Container Ports\n\n- `43211`: Seanime web interface\n- `43213`, `43214`: Additional Seanime ports\n- `8080`: qBittorrent web interface\n- `6881` (TCP/UDP): BitTorrent port\n- `10000`: Additional service port\n\n## 📂 Volumes\n\n- `/home/seanime/.config/Seanime`: Seanime configuration directory\n- `/home/seanime/.config/qBittorrent`: qBittorrent configuration directory\n- `/home/seanime/Downloads`: Download directory\n\n## 🛠️ Setup Instructions\n\n1. Clone the project or create a `docker-compose.yml` file with the required configuration.\n2. Start the services using the following command:\n\n```bash\ndocker-compose up\n```\n\n## 📝 Docker Compose Example\n\n```yaml\nversion: '3'\nservices:\n  seanime:\n    image: hhftechnology/alpine-seanime\n    container_name: seanime\n    ports:\n      - \"43211:43211\"\n      - \"43213:43213\"\n      - \"43214:43214\"\n      - \"8080:8080\"\n      - \"6881:6881\"\n      - \"6881:6881/udp\"\n      - \"10000:10000\"\n    volumes:\n      - ./config/seanime:/home/seanime/.config/Seanime\n      - ./config/qBittorrent:/home/seanime/.config/qBittorrent\n      - ./downloads:/home/seanime/Downloads\n    restart: unless-stopped\n```\n\n## 🔑 qBittorrent Configuration\n\nWhen initializing Seanime, you'll be asked to provide **qBittorrent** details. Use the following credentials:  \n\n- **Username**: `admin`  \n- **Password**: `admin123`  \n- **Port**: `8080`  \n\n## 📁 Library Path Setup\n\nProvide the **Library Path** as per your Docker Compose volume configuration:  \n`/home/seanime/Downloads`\n\n## 🌐 Access the Application\n\nOnce the services are running, you can access:\n- Seanime: **http://localhost:43211**\n- qBittorrent: **http://localhost:8080**\n\n*(Replace `localhost` with your server's IP if accessing remotely.)*\n\n## 🎬 Stream with Jellyfin (Optional)\n\nWant to stream downloaded videos using **Jellyfin**?  \n\n1. Update the **download volume path** in `docker-compose.yml` to point to Jellyfin's media location.  \n2. Jellyfin will automatically pick up the files for streaming.  \n\n## 🔄 Updates\n\nThe current version (2.5.2) can be updated by modifying the PKGVER environment variable in the Dockerfile.\n\n## 🆘 Support\n\n- For Seanime-specific issues, please refer to the [Seanime GitHub repository](https://github.com/5rahim/seanime).\n- For container-related issues, please open an issue in this repository.\n\n## 📜 License\n\nThis Docker image is provided under the same license as Seanime.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhhftechnology%2Falpine-seanime","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhhftechnology%2Falpine-seanime","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhhftechnology%2Falpine-seanime/lists"}