{"id":34683892,"url":"https://github.com/hatlabs/halos-core-containers","last_synced_at":"2026-02-12T13:20:08.431Z","repository":{"id":328676716,"uuid":"1112537286","full_name":"hatlabs/halos-core-containers","owner":"hatlabs","description":"Core container application definitions for HaLOS","archived":false,"fork":false,"pushed_at":"2026-01-03T15:06:37.000Z","size":276,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-06T08:35:12.378Z","etag":null,"topics":["apt-package","halos"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/hatlabs.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":"AGENTS.md","dco":null,"cla":null}},"created_at":"2025-12-08T19:03:46.000Z","updated_at":"2026-01-03T15:05:01.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/hatlabs/halos-core-containers","commit_stats":null,"previous_names":["hatlabs/halos-core-containers"],"tags_count":67,"template":false,"template_full_name":null,"purl":"pkg:github/hatlabs/halos-core-containers","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hatlabs%2Fhalos-core-containers","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hatlabs%2Fhalos-core-containers/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hatlabs%2Fhalos-core-containers/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hatlabs%2Fhalos-core-containers/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hatlabs","download_url":"https://codeload.github.com/hatlabs/halos-core-containers/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hatlabs%2Fhalos-core-containers/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28477133,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-16T03:13:13.607Z","status":"ssl_error","status_checked_at":"2026-01-16T03:11:47.863Z","response_time":107,"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":["apt-package","halos"],"created_at":"2025-12-24T21:37:55.887Z","updated_at":"2026-01-16T03:19:00.791Z","avatar_url":"https://github.com/hatlabs.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# HaLOS Core Containers\n\nCore container application definitions for HaLOS. These apps are pre-installed in HaLOS images, providing essential system functionality including Single Sign-On (SSO).\n\n## What's in This Repository\n\nThis repository contains core HaLOS container applications:\n\n- **Traefik** - Reverse proxy and load balancer, routes all web traffic via subdomains\n- **Authelia** - Identity provider for SSO (OIDC + ForwardAuth)\n- **Homarr** - Dashboard landing page at `https://{hostname}.local/`\n\n**Key difference from halos-marine-containers:** No store package - core apps are pre-installed in HaLOS images, not discovered via store UI.\n\n## Single Sign-On (SSO)\n\nHaLOS provides unified authentication across all web applications:\n\n- All apps accessible via subdomains: `{app}.{hostname}.local`\n- Single login for all applications\n- HTTP automatically redirects to HTTPS\n- Three auth modes: ForwardAuth (default), OIDC, or none\n\nSee [docs/SSO_SPEC.md](docs/SSO_SPEC.md) and [docs/SSO_ARCHITECTURE.md](docs/SSO_ARCHITECTURE.md) for details.\n\n## Build Output\n\nCI/CD builds Debian packages from this repository:\n- `halos-traefik-container` - Reverse proxy\n- `halos-authelia-container` - SSO identity provider\n- `halos-homarr-container` - Dashboard landing page\n\nAll packages are published to apt.hatlabs.fi.\n\n## Agentic Coding Setup (Claude Code, GitHub Copilot, etc.)\n\nFor development with AI assistants, use the halos-distro workspace for full context:\n\n```bash\n# Clone the workspace\ngit clone https://github.com/hatlabs/halos-distro.git\ncd halos-distro\n\n# Get all sub-repositories including halos-core-containers\n./run repos:clone\n\n# Work from workspace root for AI-assisted development\n# Claude Code gets full context across all repos\n```\n\nSee `halos-distro/docs/` for development workflows:\n- `LIFE_WITH_CLAUDE.md` - Quick start guide\n- `IMPLEMENTATION_CHECKLIST.md` - Development checklist\n- `DEVELOPMENT_WORKFLOW.md` - Detailed workflows\n\n## Repository Structure\n\n```\nhalos-core-containers/\n├── apps/\n│   ├── traefik/            # Reverse proxy\n│   ├── authelia/           # SSO identity provider\n│   └── homarr/             # Dashboard landing page\n├── docs/\n│   ├── SSO_SPEC.md         # SSO technical specification\n│   └── SSO_ARCHITECTURE.md # SSO system architecture\n├── tools/                   # Build scripts\n├── .github/workflows/       # CI/CD\n└── README.md\n```\n\n## Adding a New App\n\n1. Create `apps/\u003capp-name\u003e/` directory\n2. Add required files: `docker-compose.yml`, `metadata.yaml`, `icon.png`\n3. Optionally add `config.yml` for user-configurable settings\n4. Test locally with `container-packaging-tools`\n5. Create PR - CI will build and validate\n\n## Building Locally\n\nRequirements:\n- `container-packaging-tools` package installed\n\n```bash\n# Build all packages\n./tools/build-all.sh\n\n# Build output in build/ directory\nls build/*.deb\n```\n\n## Related Repositories\n\n- [halos-distro](https://github.com/hatlabs/halos-distro) - HaLOS workspace and planning\n- [halos-marine-containers](https://github.com/hatlabs/halos-marine-containers) - Marine container store\n- [cockpit-apt](https://github.com/hatlabs/cockpit-apt) - APT package manager with store filtering\n- [container-packaging-tools](https://github.com/hatlabs/container-packaging-tools) - Package generation tooling\n- [apt.hatlabs.fi](https://github.com/hatlabs/apt.hatlabs.fi) - APT repository infrastructure\n\n## License\n\nApache License 2.0 - See [LICENSE](LICENSE) for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhatlabs%2Fhalos-core-containers","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhatlabs%2Fhalos-core-containers","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhatlabs%2Fhalos-core-containers/lists"}