[PR #712] [CLOSED] Update Meilisearch version to v1.35.1, Cyberchef logo arrangement #7077

Closed
opened 2026-05-18 19:14:09 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/Dokploy/templates/pull/712
Author: @jdjimenez2312
Created: 2/17/2026
Status: Closed

Base: canaryHead: canary


📝 Commits (6)

  • c8bb4a9 Update image versions in the docker-compose and meta.json files for AList, Appsmith, and Budibase.
  • a82750a Update MinIO image version in docker-compose
  • fa5ce7f Update Meilisearch version to v1.35.1, Cyberchef logo arrangement
  • 704abf8 Merge branch 'Dokploy:canary' into canary
  • 3cc27e3 fix: add restart policy for the Meilisearch service in docker-compose
  • 795e88d fix: update Supabase version 1.26.02 and environment variables in docker-compose and template files

📊 Changes

7 files changed (+164 additions, -109 deletions)

View changed files

blueprints/cyberchef/cyberchef.png (+0 -0)
blueprints/cyberchef/cyberchef.svg (+0 -0)
📝 blueprints/meilisearch/docker-compose.yml (+2 -4)
📝 blueprints/meilisearch/template.toml (+1 -2)
📝 blueprints/supabase/docker-compose.yml (+60 -56)
📝 blueprints/supabase/template.toml (+98 -44)
📝 meta.json (+3 -3)

📄 Description

What is this PR about?

New PR of Meilisearch and Cyberchef

Checklist

Before submitting this PR, please make sure that:

Close automatically the related issues using the keywords: closes #ISSUE_NUMBER

Greptile Summary

This PR makes two independent changes: (1) updates the Meilisearch template from v1.8.3 to v1.35.1 and removes the MEILI_ENV variable, and (2) replaces the CyberChef logo from SVG to PNG with a corresponding meta.json update.

Key findings:

  • version: "3.8" removed from blueprints/meilisearch/docker-compose.yml — the project guidelines require this field to be present in all Compose files.
  • Missing restart policy in blueprints/meilisearch/docker-compose.yml — project guidelines mandate restart: unless-stopped or restart: always for all services. (Note: this was also absent in the original file, but the PR is a good opportunity to add it.)
  • CyberChef logo downgraded from SVG to PNG — project guidelines prefer SVG format for logos. The previous cyberchef.svg has been deleted; reverting to SVG (or explaining why PNG is needed) would be more consistent with the style guide.
  • The meta.json version and logo reference changes are correct and consistent with the blueprint files.

Confidence Score: 3/5

  • This PR is mostly safe but has two guideline violations in the Meilisearch Compose file that should be fixed before merging.
  • The version bump and env cleanup are straightforward. However, version: "3.8" was accidentally dropped (explicitly required by AGENTS.md) and restart is missing. The CyberChef change is purely cosmetic but goes against the SVG-preferred convention.
  • blueprints/meilisearch/docker-compose.yml requires the most attention — it is missing both version: "3.8" and a restart policy.

Last reviewed commit: 704abf8

(3/5) Reply to the agent's comments like "Can you suggest a fix for this @greptileai?" or ask follow-up questions!

Context used:

  • Context from dashboard - AGENTS.md (source)

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/Dokploy/templates/pull/712 **Author:** [@jdjimenez2312](https://github.com/jdjimenez2312) **Created:** 2/17/2026 **Status:** ❌ Closed **Base:** `canary` ← **Head:** `canary` --- ### 📝 Commits (6) - [`c8bb4a9`](https://github.com/Dokploy/templates/commit/c8bb4a9438abd9a2552c2d9b0080450941f7e824) Update image versions in the docker-compose and meta.json files for AList, Appsmith, and Budibase. - [`a82750a`](https://github.com/Dokploy/templates/commit/a82750ac94f9e325b0fb740bae7165d98ac0a939) Update MinIO image version in docker-compose - [`fa5ce7f`](https://github.com/Dokploy/templates/commit/fa5ce7f168590fba6ae77e8444d18e7f8211aede) Update Meilisearch version to v1.35.1, Cyberchef logo arrangement - [`704abf8`](https://github.com/Dokploy/templates/commit/704abf8b6c99f2d7dc56a7e4648348699f468d88) Merge branch 'Dokploy:canary' into canary - [`3cc27e3`](https://github.com/Dokploy/templates/commit/3cc27e35c905b03ccb4b7f8be2508386a496888e) fix: add restart policy for the Meilisearch service in docker-compose - [`795e88d`](https://github.com/Dokploy/templates/commit/795e88d0f19ba0dc38d087cbda4a4dc2289c85b8) fix: update Supabase version 1.26.02 and environment variables in docker-compose and template files ### 📊 Changes **7 files changed** (+164 additions, -109 deletions) <details> <summary>View changed files</summary> ➕ `blueprints/cyberchef/cyberchef.png` (+0 -0) ➖ `blueprints/cyberchef/cyberchef.svg` (+0 -0) 📝 `blueprints/meilisearch/docker-compose.yml` (+2 -4) 📝 `blueprints/meilisearch/template.toml` (+1 -2) 📝 `blueprints/supabase/docker-compose.yml` (+60 -56) 📝 `blueprints/supabase/template.toml` (+98 -44) 📝 `meta.json` (+3 -3) </details> ### 📄 Description ## What is this PR about? New PR of Meilisearch and Cyberchef ## Checklist Before submitting this PR, please make sure that: - [✅] I have read the suggestions in the README.md file https://github.com/Dokploy/templates?tab=readme-ov-file#general-requirements-when-creating-a-template - [✅] I have tested the template in my instance, so the maintainers don't spend time trying to figure out what's wrong. ## Issues related (if applicable) Close automatically the related issues using the keywords: `closes #ISSUE_NUMBER` <!-- greptile_comment --> <h3>Greptile Summary</h3> This PR makes two independent changes: (1) updates the Meilisearch template from v1.8.3 to v1.35.1 and removes the `MEILI_ENV` variable, and (2) replaces the CyberChef logo from SVG to PNG with a corresponding `meta.json` update. Key findings: - **`version: "3.8"` removed** from `blueprints/meilisearch/docker-compose.yml` — the project guidelines require this field to be present in all Compose files. - **Missing `restart` policy** in `blueprints/meilisearch/docker-compose.yml` — project guidelines mandate `restart: unless-stopped` or `restart: always` for all services. (Note: this was also absent in the original file, but the PR is a good opportunity to add it.) - **CyberChef logo downgraded from SVG to PNG** — project guidelines prefer SVG format for logos. The previous `cyberchef.svg` has been deleted; reverting to SVG (or explaining why PNG is needed) would be more consistent with the style guide. - The `meta.json` version and logo reference changes are correct and consistent with the blueprint files. <h3>Confidence Score: 3/5</h3> - This PR is mostly safe but has two guideline violations in the Meilisearch Compose file that should be fixed before merging. - The version bump and env cleanup are straightforward. However, `version: "3.8"` was accidentally dropped (explicitly required by AGENTS.md) and `restart` is missing. The CyberChef change is purely cosmetic but goes against the SVG-preferred convention. - blueprints/meilisearch/docker-compose.yml requires the most attention — it is missing both `version: "3.8"` and a `restart` policy. <sub>Last reviewed commit: 704abf8</sub> <!-- greptile_other_comments_section --> <sub>(3/5) Reply to the agent's comments like "Can you suggest a fix for this @greptileai?" or ask follow-up questions!</sub> **Context used:** - Context from `dashboard` - AGENTS.md ([source](https://app.greptile.com/review/custom-context?memory=09330bde-2058-497c-9c64-ceae637fb5b2)) <!-- /greptile_comment --> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2026-05-18 19:14:09 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/templates#7077