{"id":34704922,"url":"https://github.com/hatlabs/halos-marine-containers","last_synced_at":"2026-02-11T10:03:01.319Z","repository":{"id":324579622,"uuid":"1094427074","full_name":"hatlabs/halos-marine-containers","owner":"hatlabs","description":"Marine container store definition and curated marine application definitions for HaLOS","archived":false,"fork":false,"pushed_at":"2026-01-31T10:27:11.000Z","size":602,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-31T10:47:38.728Z","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":"mit","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-11-11T17:34:59.000Z","updated_at":"2026-01-30T18:10:45.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/hatlabs/halos-marine-containers","commit_stats":null,"previous_names":["hatlabs/halos-marine-containers"],"tags_count":88,"template":false,"template_full_name":null,"purl":"pkg:github/hatlabs/halos-marine-containers","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hatlabs%2Fhalos-marine-containers","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hatlabs%2Fhalos-marine-containers/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hatlabs%2Fhalos-marine-containers/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hatlabs%2Fhalos-marine-containers/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hatlabs","download_url":"https://codeload.github.com/hatlabs/halos-marine-containers/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hatlabs%2Fhalos-marine-containers/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29236204,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-08T14:18:14.570Z","status":"ssl_error","status_checked_at":"2026-02-08T14:18:14.071Z","response_time":57,"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-24T23:16:11.017Z","updated_at":"2026-02-08T16:07:59.369Z","avatar_url":"https://github.com/hatlabs.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# HaLOS Marine Containers\n\nMarine container store definition and curated marine application definitions for HaLOS.\n\n## What's in This Repository\n\nThis repository contains:\n\n1. **Store Definition** (`store/`): Configuration and branding for the Marine container store\n   - Installs to `/etc/container-apps/stores/marine.yaml` on target systems\n   - Provides filtering rules, section metadata, and branding\n\n2. **Marine App Definitions** (`apps/`): Curated marine applications packaged as containers\n   - Signal K server\n   - OpenCPN chartplotter\n   - InfluxDB (for marine data logging)\n   - Grafana (for marine data visualization)\n   - And more...\n\n## Build Output\n\nCI/CD builds multiple Debian packages from this repository:\n- `marine-container-store` - Store definition package\n- `signalk-server-container` - Signal K marine data server\n- `opencpn-container` - OpenCPN chartplotter\n- etc.\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-marine-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-marine-containers/\n├── store/\n│   ├── marine.yaml          # Store configuration\n│   ├── icon.svg             # Store branding\n│   ├── banner.png\n│   └── debian/              # Packaging for marine-container-store\n├── apps/\n│   ├── signalk-server/      # Each app has its definition\n│   ├── opencpn/\n│   └── ...\n├── tools/                    # Build scripts\n├── .github/workflows/        # CI/CD\n├── docs/\n│   └── DESIGN.md             # Detailed design documentation\n└── README.md\n```\n\n## Adding a New App\n\nSee [docs/DESIGN.md](docs/DESIGN.md) for detailed instructions on adding new marine applications to the store.\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- [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\nSee individual app definitions for their respective licenses.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhatlabs%2Fhalos-marine-containers","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhatlabs%2Fhalos-marine-containers","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhatlabs%2Fhalos-marine-containers/lists"}