{"id":46843923,"url":"https://github.com/fairdataihub/compose","last_synced_at":"2026-03-10T14:13:07.814Z","repository":{"id":333769907,"uuid":"1130066620","full_name":"fairdataihub/compose","owner":"fairdataihub","description":null,"archived":false,"fork":false,"pushed_at":"2026-01-20T23:13:38.000Z","size":26,"stargazers_count":2,"open_issues_count":1,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-21T09:32:57.345Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"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/fairdataihub.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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-01-08T01:34:41.000Z","updated_at":"2026-01-20T23:13:41.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/fairdataihub/compose","commit_stats":null,"previous_names":["fairdataihub/compose"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/fairdataihub/compose","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fairdataihub%2Fcompose","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fairdataihub%2Fcompose/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fairdataihub%2Fcompose/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fairdataihub%2Fcompose/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fairdataihub","download_url":"https://codeload.github.com/fairdataihub/compose/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fairdataihub%2Fcompose/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30336300,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-10T12:41:07.687Z","status":"ssl_error","status_checked_at":"2026-03-10T12:41:06.728Z","response_time":106,"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":[],"created_at":"2026-03-10T14:13:07.287Z","updated_at":"2026-03-10T14:13:07.798Z","avatar_url":"https://github.com/fairdataihub.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# Docker Compose Services Collection\n\nThis repository contains Docker Compose configurations for various services commonly used in development and production environments. Each service is self-contained in its own directory with its own compose file and detailed documentation.\n\n## Available Services\n\nThis collection includes the following services:\n\n### Database \u0026 Storage\n\n- **[PostgreSQL](postgres/)** - Open-source relational database management system\n- **[Redis](redis/)** - In-memory data structure store, used as a database, cache, and message broker\n- **[Valkey](valkey/)** - Open-source fork of Redis with Redis protocol compatibility\n- **[Dragonfly](dragonfly/)** - Modern in-memory datastore with Redis and Memcached API compatibility\n- **[InfluxDB](influxdb/)** - Time series database built for real-time analytic workloads\n\n### Search \u0026 AI\n\n- **[Meilisearch](meilisearch/)** - Fast, open-source search engine\n- **[Ollama](ollama/)** - Local AI model runner and API server\n\n### Web Servers \u0026 Reverse Proxies\n\n- **[Traefik](traefik/)** - Modern reverse proxy and load balancer with automatic service discovery\n- **[Nginx](nginx/)** - High-performance web server and reverse proxy\n\n## Quick Start\n\nEach service directory contains its own Docker Compose file and detailed README with setup instructions. To get started with a specific service:\n\n1. Navigate to the service directory (e.g., `cd postgres`)\n2. Review the service-specific README for configuration details\n3. Start the service using Docker Compose:\n\n```bash\ndocker compose -f \u003cservice-compose.yml\u003e up -d\n```\n\n## Prerequisites\n\nAll services require:\n\n- Docker installed and running\n- Docker Compose installed (v2.0+)\n\nSome services may have additional requirements:\n\n- **Ollama**: Optional NVIDIA GPU support for better performance\n- **PostgreSQL/Redis/Valkey/Dragonfly/InfluxDB**: Port configuration before starting\n- **Dragonfly**: Minimum 4GB RAM recommended for optimal performance\n- **Traefik**: Docker socket access for automatic service discovery\n\n## Service Details\n\nEach service includes:\n\n- A Docker Compose configuration file\n- A detailed README with setup instructions\n- Connection examples for common programming languages\n- Configuration options and best practices\n\n## Usage Examples\n\n### Starting a Single Service\n\n```bash\n# Start PostgreSQL\ncd postgres\ndocker compose -f postgres-compose.yml up -d\n\n# Start Redis\ncd redis\ndocker compose -f redis-compose.yml up -d\n```\n\n### Checking Service Status\n\n```bash\n# Check if a service is running\ndocker ps | grep \u003cservice-name\u003e\n\n# View logs\ndocker compose -f \u003cservice-compose.yml\u003e logs -f\n```\n\n### Stopping a Service\n\n```bash\ndocker compose -f \u003cservice-compose.yml\u003e down\n```\n\n## Service-Specific Documentation\n\nFor detailed setup instructions, configuration options, and usage examples, refer to each service's README:\n\n- [PostgreSQL Setup](postgres/readme.md)\n- [Redis Setup](redis/readme.md)\n- [Valkey Setup](valkey/readme.md)\n- [Dragonfly Setup](dragonfly/readme.md)\n- [InfluxDB Setup](influxdb/readme.md)\n- [Meilisearch Setup](meilisearch/readme.md)\n- [Ollama Setup](ollama/readme.md)\n- [Traefik Setup](traefik/readme.md)\n- [Nginx Setup](nginx/readme.md)\n\n## Notes\n\n- **Port Configuration**: Most services require you to configure port mappings before starting. Replace `xxx` placeholders in the compose files with your desired ports.\n- **Data Persistence**: All services use Docker volumes to persist data across container restarts.\n- **Security**: Default configurations are suitable for development. For production use, review and update security settings (passwords, authentication, etc.) in each service's compose file.\n- **Networking**: Services run independently by default. To connect services together, configure Docker networks as needed (see Ollama's README for an example of shared networking).\n\n## Contributing\n\nEach service is designed to be self-contained and independently usable. When adding new services:\n\n1. Create a new directory with a descriptive name\n2. Include a `*-compose.yml` file with the Docker Compose configuration\n3. Add a comprehensive `readme.md` with setup instructions and usage examples\n4. Follow the existing documentation style and structure\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffairdataihub%2Fcompose","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffairdataihub%2Fcompose","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffairdataihub%2Fcompose/lists"}