{"id":27248191,"url":"https://github.com/forgemind-git/n8n-tutorial","last_synced_at":"2026-02-12T19:01:28.648Z","repository":{"id":285860101,"uuid":"959586726","full_name":"Forgemind-git/N8N-tutorial","owner":"Forgemind-git","description":"This repository is part of the ForgeMind AI YouTube channel and is designed to help you get started with n8n, a powerful workflow automation tool.","archived":false,"fork":false,"pushed_at":"2025-04-03T03:04:32.000Z","size":463,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-08-12T13:55:50.185Z","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":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Forgemind-git.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}},"created_at":"2025-04-03T03:00:37.000Z","updated_at":"2025-07-02T12:51:29.000Z","dependencies_parsed_at":null,"dependency_job_id":"4882fafd-9987-4ad0-9e05-52625c4abbf6","html_url":"https://github.com/Forgemind-git/N8N-tutorial","commit_stats":null,"previous_names":["forgemind-git/n8n-tutorial"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Forgemind-git/N8N-tutorial","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Forgemind-git%2FN8N-tutorial","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Forgemind-git%2FN8N-tutorial/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Forgemind-git%2FN8N-tutorial/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Forgemind-git%2FN8N-tutorial/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Forgemind-git","download_url":"https://codeload.github.com/Forgemind-git/N8N-tutorial/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Forgemind-git%2FN8N-tutorial/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29377902,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-12T18:59:55.292Z","status":"ssl_error","status_checked_at":"2026-02-12T18:59:44.289Z","response_time":55,"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":"2025-04-10T23:08:04.240Z","updated_at":"2026-02-12T19:01:28.633Z","avatar_url":"https://github.com/Forgemind-git.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n  \u003cimg src=\"./assets/logo.png\" alt=\"Forgemind AI logo\" width=\"200\"/\u003e\n\u003c/p\u003e\n\n# ForgeMindAI - Docker Compose \u0026 n8n Workflow\n\nThis repository is part of the [ForgeMindAI](https://www.youtube.com/@ForgeMindAI) YouTube channel, where we explore practical AI automation tools and workflows. Here, you'll find a ready-to-use **Docker Compose setup** to kickstart your own AI-powered automation.\n\n## N8N starter Docker Environment\n\nThis repository provides a Docker Compose setup to orchestrate the following services:\n- **n8n** (workflow automation tool)\n- **PostgreSQL** (as n8n's database)\n- **Qdrant** (vector search engine for AI-related tasks)\n- **n8n-import** (a one-time service to import workflows and credentials)\n\n---\n\n## 🧱 Services\n\n### 1. `n8n`\n- The core automation platform.\n- Exposes port `5678`.\n- Mounts volumes for persistent storage, workflow/credential backups, and shared data.\n- Depends on:\n  - `postgres` (healthy)\n  - `n8n-import` (successful completion)\n\n### 2. `postgres`\n- Lightweight PostgreSQL database (v16-alpine).\n- Stores data in the `postgres_storage` volume.\n- Includes a health check to ensure it's ready before other services connect.\n\n### 3. `n8n-import`\n- A short-lived container to import existing credentials and workflows from the `/n8n/backup` directory.\n- Uses the same configuration as the main `n8n` service.\n- Runs once, before the main `n8n` container starts.\n\n### 4. `qdrant`\n- A high-performance vector database used for semantic search or AI-powered features.\n- Exposes port `6333` for API access.\n- Persists data in `qdrant_storage`.\n\n---\n\n## 🔄 Volumes\n\n| Name              | Purpose                                 |\n|-------------------|-----------------------------------------|\n| `n8n_storage`     | Stores n8n's internal configuration and workflow data |\n| `postgres_storage`| Stores PostgreSQL data                  |\n| `qdrant_storage`  | Stores Qdrant data                      |\n\n---\n\n## 🌐 Networks\n\n| Name   | Purpose               |\n|--------|-----------------------|\n| `demo` | Shared network between all services |\n\n---\n\n## ⚙️ Environment Variables\n\nMake sure to define the following variables in a `.env` file or your shell environment:\n- `POSTGRES_USER`\n- `POSTGRES_PASSWORD`\n- `POSTGRES_DB`\n- `N8N_ENCRYPTION_KEY`\n- `N8N_USER_MANAGEMENT_JWT_SECRET`\n\n---\n\n## 🚀 Usage\n\n1. Create your `.env` file with the required variables.\n2. Place your credentials and workflows in `n8n/backup`.\n3. Run the stack:\n   ```bash\n   docker-compose up -d\n\n## Steps to bring up container\n\n1. Copy the docker compose to seperate directory.\n2. use `docker compose up -d` to start the container.\n3. Ensure you have docker command line installed.\n4. use `docker compose down` to stop the container.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fforgemind-git%2Fn8n-tutorial","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fforgemind-git%2Fn8n-tutorial","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fforgemind-git%2Fn8n-tutorial/lists"}