{"id":39967896,"url":"https://github.com/luandro/colmena-os","last_synced_at":"2026-01-18T22:03:24.745Z","repository":{"id":302463860,"uuid":"1012186863","full_name":"luandro/colmena-os","owner":"luandro","description":null,"archived":false,"fork":false,"pushed_at":"2025-11-14T11:28:31.000Z","size":466,"stargazers_count":1,"open_issues_count":2,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-11-14T13:20:56.208Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Shell","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/luandro.png","metadata":{"files":{"readme":"README-Docker.md","changelog":null,"contributing":"CONTRIBUTING.md","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":"2025-07-02T00:40:28.000Z","updated_at":"2025-09-01T13:01:42.000Z","dependencies_parsed_at":"2025-07-02T14:44:45.417Z","dependency_job_id":"8d48cafb-cc42-44d8-8b47-6e1a57f619c9","html_url":"https://github.com/luandro/colmena-os","commit_stats":null,"previous_names":["luandro/colmena-os"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/luandro/colmena-os","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/luandro%2Fcolmena-os","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/luandro%2Fcolmena-os/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/luandro%2Fcolmena-os/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/luandro%2Fcolmena-os/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/luandro","download_url":"https://codeload.github.com/luandro/colmena-os/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/luandro%2Fcolmena-os/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28552184,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-18T20:59:07.572Z","status":"ssl_error","status_checked_at":"2026-01-18T20:59:02.799Z","response_time":98,"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":"2026-01-18T22:03:24.067Z","updated_at":"2026-01-18T22:03:24.733Z","avatar_url":"https://github.com/luandro.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ColmenaOS Docker Deployment Guide\n\nThis repository provides two Docker Compose configurations for different use cases:\n\n## 🚀 Production Deployment (docker-compose.yml)\n\nUses the **published image** from Docker Hub - no local build required.\n\n```bash\n# Start all services using published image\ndocker-compose up -d\n\n# Stop services\ndocker-compose down\n```\n\n**Image**: `communityfirst/colmena-app:latest`\n**Use case**: Production deployments, CasaOS, Balena, etc.\n\n## 🔧 Local Development (docker-compose.local.yml)\n\nBuilds the image locally from source code - requires local repository.\n\n```bash\n# Build and start all services locally\ndocker-compose -f docker-compose.local.yml up --build\n\n# Stop services\ndocker-compose -f docker-compose.local.yml down\n```\n\n**Image**: `colmena-app:local` (built from local Dockerfile)\n**Use case**: Development, testing, customization\n\n## 📋 Environment Variables\n\nCreate a `.env` file with required variables:\n\n```env\n# Database Configuration\nPOSTGRES_PASSWORD=your_secure_password\nPOSTGRES_USER=colmena\nPOSTGRES_DB=colmena\n\n# Admin Configuration\nPGADMIN_DEFAULT_PASSWORD=admin_password\nNEXTCLOUD_ADMIN_PASSWORD=nextcloud_password\nSUPERADMIN_PASSWORD=superadmin_password\n\n# Application Security\nSECRET_KEY=your-secret-key-here-minimum-50-characters-long\n\n# Optional Overrides\nHTTP_PORT=80\nBACKEND_PORT=8000\nDEBUG=false\n```\n\n## 🌐 Service Access\n\nOnce running, access services at:\n\n- **Frontend**: http://localhost (or configured HTTP_PORT)\n- **Backend API**: http://localhost:8000 (or configured BACKEND_PORT)\n- **pgAdmin**: http://localhost:5050\n- **Nextcloud**: http://localhost:8003\n- **Mail UI**: http://localhost:1080\n\n## 📦 Single Image Deployment\n\nFor platforms like CasaOS or simple deployments, you can use just the app image:\n\n```bash\ndocker run -d \\\n  --name colmena-app \\\n  -p 80:80 -p 8000:8000 \\\n  -e DATABASE_URL=postgresql://user:pass@host:5432/db \\\n  -e SECRET_KEY=your-secret-key \\\n  communityfirst/colmena-app:latest\n```\n\n## 🔄 Updates\n\n### Production\n```bash\ndocker-compose pull\ndocker-compose up -d\n```\n\n### Local Development\n```bash\ngit pull\ndocker-compose -f docker-compose.local.yml up --build\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fluandro%2Fcolmena-os","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fluandro%2Fcolmena-os","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fluandro%2Fcolmena-os/lists"}