{"id":28930733,"url":"https://github.com/dujonwalker/containerized","last_synced_at":"2026-02-03T15:33:01.727Z","repository":{"id":298027379,"uuid":"998624240","full_name":"dujonwalker/containerized","owner":"dujonwalker","description":"Ready-to-use Docker/Podman setups for business apps, creative tools, and development environments","archived":false,"fork":false,"pushed_at":"2025-06-09T01:47:01.000Z","size":11,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-06-22T15:53:30.812Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Dockerfile","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/dujonwalker.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"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}},"created_at":"2025-06-09T01:42:54.000Z","updated_at":"2025-06-09T01:47:05.000Z","dependencies_parsed_at":"2025-06-09T02:35:58.038Z","dependency_job_id":"00ece99b-ba3b-4865-a00f-d341df9fce86","html_url":"https://github.com/dujonwalker/containerized","commit_stats":null,"previous_names":["dujonwalker/containerized"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/dujonwalker/containerized","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dujonwalker%2Fcontainerized","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dujonwalker%2Fcontainerized/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dujonwalker%2Fcontainerized/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dujonwalker%2Fcontainerized/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dujonwalker","download_url":"https://codeload.github.com/dujonwalker/containerized/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dujonwalker%2Fcontainerized/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29047903,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-03T15:19:55.533Z","status":"ssl_error","status_checked_at":"2026-02-03T15:13:09.723Z","response_time":96,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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-22T15:37:50.637Z","updated_at":"2026-02-03T15:33:01.713Z","avatar_url":"https://github.com/dujonwalker.png","language":"Dockerfile","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Containerized\n\nA collection of Docker configurations for running mainstream Linux applications on NixOS (and other systems). This repository contains Dockerfiles and docker-compose configurations that make it easy to run applications in isolated, reproducible environments.\n\n## 🎯 Purpose\n\nAs a NixOS user, I often encounter situations where:\n- Applications have outdated versions in nixpkgs\n- Upstream projects primarily target Ubuntu/mainstream distros\n- I prefer the convenience and familiarity of containers for certain applications\n- Containerization extends the Nix philosophy of isolated, reproducible environments\n\nThis repository serves as my personal collection of containerized applications with proven configurations that work reliably.\n\n## 📦 What's Included\n\nEach application directory contains:\n- **Dockerfile**: Container definition optimized for the specific application\n- **docker-compose.yml**: Complete deployment configuration with volumes, networks, and environment variables\n- **README.md**: Application-specific setup instructions and configuration notes\n- **Additional configs**: Any required configuration files or scripts\n\n## 🚀 Usage\n\n### Quick Start\n```bash\n# Clone the repository\ngit clone https://github.com/dujonwalker/containerized.git\ncd containerized\n\n# Navigate to the application you want to run\ncd [application-name]\n\n# Review and customize the configuration\nnano docker-compose.yml\n\n# Deploy\ndocker compose up -d\n```\n\n### General Workflow\n1. **Browse available applications** in the repository\n2. **Copy the relevant directory** to your preferred location\n3. **Review configuration files** and adjust paths, ports, and environment variables\n4. **Deploy using docker compose**\n5. **Customize as needed** for your specific setup\n\n## 🛠️ Applications\n\nApplications are organized by category and include both self-hosted services and development tools that benefit from containerization on NixOS.\n\n### Development Tools\n- **[claude-code](claude-code/)** - Claude Code CLI with comprehensive modern developer toolkit (ripgrep, fd, fzf, bat, exa, delta, and more) in Ubuntu 24.04 container\n\n*[Additional applications will be added]*\n\n## 📋 Configuration Notes\n\n### Volume Paths\n- All configurations use relative paths or clearly marked placeholder paths\n- Review volume mappings before deployment to ensure they match your system layout\n- Consider using Docker volumes for data that doesn't need host access\n\n### Networking\n- Most applications use custom Docker networks for isolation\n- Default ports are documented in each application's README\n- Adjust port mappings to avoid conflicts with your existing services\n\n### Environment Variables\n- Sensitive values use placeholder environment variables\n- Create `.env` files for production deployments\n- Never commit real credentials to the repository\n\n## 🔧 Customization Tips\n\n### General Best Practices\n- Always review security implications before exposing services\n- Use Docker secrets or external secret management for production\n- Regular container updates and security scanning\n- Backup persistent volumes before major updates\n\n## 🤝 Contributing\n\nWhile this is primarily my personal collection, contributions are welcome:\n\n1. **Fork the repository**\n2. **Add your application** following the existing directory structure\n3. **Include comprehensive documentation** in the application's README\n4. **Test thoroughly** before submitting\n5. **Submit a pull request** with a clear description\n\n### Application Guidelines\n- Include both Dockerfile and docker-compose.yml\n- Provide clear setup instructions\n- Document any special requirements or gotchas\n- Use security best practices (non-root users, minimal attack surface)\n- Include version pinning for reproducible builds\n\n## 📝 Notes\n\n- **Configurations are opinionated** and reflect my specific use cases\n- **Security settings** are configured for home lab environments, review for production use\n- **Version pinning** is used where possible for reproducibility\n- **Documentation** assumes familiarity with Docker and basic system administration\n\n## 🔗 Related Projects\n\n- [Project NOVA MCP Server Dockerfiles](https://github.com/dujonwalker/project-nova/tree/main/mcp-server-dockerfiles) - If you like containerized applications, you might also be interested in my collection of containerized Model Context Protocol (MCP) servers for AI agent integrations\n\n## 📄 License\n\nMIT License - feel free to use, modify, and distribute these configurations as needed.\n\n---\n\n*These configurations have been tested on NixOS but should work on any system with Docker and docker-compose installed.*\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdujonwalker%2Fcontainerized","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdujonwalker%2Fcontainerized","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdujonwalker%2Fcontainerized/lists"}