Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added blueprints/cyberchef/cyberchef.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed blueprints/cyberchef/cyberchef.svg
Binary file not shown.
3 changes: 1 addition & 2 deletions blueprints/meilisearch/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,11 @@ version: "3.8"

services:
meilisearch:
image: getmeili/meilisearch:v1.8.3
image: getmeili/meilisearch:v1.35.1
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Missing restart policy. According to AGENTS.md guidelines, all services MUST include restart: unless-stopped or restart: always.

Suggested change
image: getmeili/meilisearch:v1.35.1
image: getmeili/meilisearch:v1.35.1
restart: unless-stopped

Context Used: Context from dashboard - AGENTS.md (source)

Copy link

Copilot AI Feb 21, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The version jump from v1.8.3 to v1.35.1 is substantial (27 minor versions). According to project conventions, Docker images must be verified to exist using docker manifest inspect getmeili/meilisearch:v1.35.1 before committing to ensure the image is available and prevent deployment failures. While the PR checklist indicates the template has been tested, please confirm this specific version exists on Docker Hub.

Copilot generated this review using guidance from repository custom instructions.
volumes:
- meili_data:/meili_data
environment:
MEILI_MASTER_KEY: ${MEILI_MASTER_KEY}
MEILI_ENV: ${MEILI_ENV}

volumes:
meili_data:
Expand Down
3 changes: 1 addition & 2 deletions blueprints/meilisearch/template.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,4 @@ port = 7_700
host = "${main_domain}"

[config.env]
MEILI_ENV = "development"
MEILI_MASTER_KEY = "${master_key}"
MEILI_MASTER_KEY = "${master_key}"
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

File is missing trailing newline at end of file.

Note: If this suggestion doesn't match your team's coding style, reply to this and let me know. I'll remember it for next time!

4 changes: 2 additions & 2 deletions meta.json
Original file line number Diff line number Diff line change
Expand Up @@ -1685,7 +1685,7 @@
"name": "CyberChef",
"version": "latest",
"description": "CyberChef is a web application for encryption, encoding, compression, and data analysis, developed by GCHQ.",
"logo": "cyberchef.svg",
"logo": "cyberchef.png",
"links": {
"github": "https://github.com/gchq/CyberChef",
"website": "https://gchq.github.io/CyberChef/",
Expand Down Expand Up @@ -3932,7 +3932,7 @@
{
"id": "meilisearch",
"name": "Meilisearch",
"version": "v1.8.3",
"version": "v1.35.1",
"description": "Meilisearch is a free and open-source search engine that allows you to easily add search functionality to your web applications.",
"logo": "meilisearch.png",
"links": {
Expand Down
Loading