{"id":35140860,"url":"https://github.com/daemonless/immich-ml","last_synced_at":"2026-02-22T17:17:04.241Z","repository":{"id":331083606,"uuid":"1124059577","full_name":"daemonless/immich-ml","owner":"daemonless","description":"Native FreeBSD OCI container image for Immich Machine Learning","archived":false,"fork":false,"pushed_at":"2026-01-12T12:41:00.000Z","size":24361,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-12T18:59:28.274Z","etag":null,"topics":["freebsd","machine-learning","oci-image","photos","podman"],"latest_commit_sha":null,"homepage":"https://daemonless.io/images/immich-ml/","language":"Dockerfile","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-2-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/daemonless.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-12-28T08:32:15.000Z","updated_at":"2026-01-12T12:41:15.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/daemonless/immich-ml","commit_stats":null,"previous_names":["daemonless/immich-ml"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/daemonless/immich-ml","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/daemonless%2Fimmich-ml","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/daemonless%2Fimmich-ml/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/daemonless%2Fimmich-ml/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/daemonless%2Fimmich-ml/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/daemonless","download_url":"https://codeload.github.com/daemonless/immich-ml/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/daemonless%2Fimmich-ml/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28400659,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-13T14:36:09.778Z","status":"ssl_error","status_checked_at":"2026-01-13T14:35:19.697Z","response_time":56,"last_error":"SSL_read: 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":["freebsd","machine-learning","oci-image","photos","podman"],"created_at":"2025-12-28T11:14:47.858Z","updated_at":"2026-02-22T17:17:04.223Z","avatar_url":"https://github.com/daemonless.png","language":"Dockerfile","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003c!--\nTHIS FILE IS AUTOGENERATED - DO NOT EDIT MANUALLY\nSource: dbuild templates\n--\u003e\n\n# Immich Machine Learning\n\nImmich Machine Learning service (Python/ONNX) on FreeBSD.\n\n| | |\n|---|---|\n| **Port** | 3003 |\n| **Registry** | `ghcr.io/daemonless/immich-ml` |\n| **Docs** | [daemonless.io/images/immich-ml](https://daemonless.io/images/immich-ml/) |\n| **Source** | [https://github.com/immich-app/immich](https://github.com/immich-app/immich) |\n| **Website** | [https://immich.app/](https://immich.app/) |\n\n## Deployment\n\n### Podman Compose\n\n```yaml\nservices:\n  immich-ml:\n    image: ghcr.io/daemonless/immich-ml:latest\n    container_name: immich-ml\n    environment:\n      - MACHINE_LEARNING_HOST=0.0.0.0\n      - MACHINE_LEARNING_PORT=3003\n      - MACHINE_LEARNING_CACHE_FOLDER=/cache\n      - PUID=1000\n      - PGID=1000\n      - TZ=UTC\n    volumes:\n      - /path/to/containers/immich-ml/cache:/cache\n      - /path/to/containers/immich-ml:/config\n    ports:\n      - 3003:3003\n    restart: unless-stopped\n```\n\n### Podman CLI\n\n```bash\npodman run -d --name immich-ml \\\n  -p 3003:3003 \\\n  -e MACHINE_LEARNING_HOST=0.0.0.0 \\\n  -e MACHINE_LEARNING_PORT=3003 \\\n  -e MACHINE_LEARNING_CACHE_FOLDER=/cache \\\n  -e PUID=@PUID@ \\\n  -e PGID=@PGID@ \\\n  -e TZ=@TZ@ \\\n  -v /path/to/containers/immich-ml/cache:/cache \\\n  -v /path/to/containers/immich-ml:/config \\\n  ghcr.io/daemonless/immich-ml:latest\n```\nAccess at: `http://localhost:3003`\n\n### Ansible\n\n```yaml\n- name: Deploy immich-ml\n  containers.podman.podman_container:\n    name: immich-ml\n    image: ghcr.io/daemonless/immich-ml:latest\n    state: started\n    restart_policy: always\n    env:\n      MACHINE_LEARNING_HOST: \"0.0.0.0\"\n      MACHINE_LEARNING_PORT: \"3003\"\n      MACHINE_LEARNING_CACHE_FOLDER: \"/cache\"\n      PUID: \"@PUID@\"\n      PGID: \"@PGID@\"\n      TZ: \"@TZ@\"\n    ports:\n      - \"3003:3003\"\n    volumes:\n      - \"/path/to/containers/immich-ml/cache:/cache\"\n      - \"/path/to/containers/immich-ml:/config\"\n```\n\n## Configuration\n### Environment Variables\n\n| Variable | Default | Description |\n|----------|---------|-------------|\n| `MACHINE_LEARNING_HOST` | `0.0.0.0` | Host to bind to (0.0.0.0) |\n| `MACHINE_LEARNING_PORT` | `3003` | Port to bind to (3003) |\n| `MACHINE_LEARNING_CACHE_FOLDER` | `/cache` | Path to cache folder (/cache) |\n| `PUID` | `1000` | User ID for the application process |\n| `PGID` | `1000` | Group ID for the application process |\n| `TZ` | `UTC` | Timezone for the container |\n### Volumes\n\n| Path | Description |\n|------|-------------|\n| `/cache` | Model cache directory (HuggingFace) |\n| `/config` | Configuration directory (unused but mounted) |\n### Ports\n\n| Port | Protocol | Description |\n|------|----------|-------------|\n| `3003` | TCP | ML API |\n\nThis image is part of the [Immich Stack](https://daemonless.io/images/immich).\n\n## Notes\n\n- **Architectures:** amd64\n- **User:** `bsd` (UID/GID set via PUID/PGID)\n- **Base:** Built on `ghcr.io/daemonless/base` (FreeBSD)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdaemonless%2Fimmich-ml","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdaemonless%2Fimmich-ml","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdaemonless%2Fimmich-ml/lists"}