init test for compose

This commit is contained in:
Aaron Pierson
2026-03-06 20:01:58 -06:00
commit 84c9b1a123
5 changed files with 24 additions and 0 deletions

21
registry.json Normal file
View File

@@ -0,0 +1,21 @@
{
"$schema": "https://registry.getarcane.app/schema.json",
"name": "My Templates",
"description": "Docker templates for internal applications",
"version": "1.0.0",
"author": "Aaron Pierson",
"url": "https://github.com/yourcompany/docker-templates",
"templates": [
{
"id": "internal-app",
"name": "Internal Application",
"description": "Company application stack with database",
"version": "1.0.0",
"author": "DevOps Team",
"compose_url": "https://raw.githubusercontent.com/yourcompany/docker-templates/main/internal-app/docker-compose.yml",
"env_url": "https://raw.githubusercontent.com/yourcompany/docker-templates/main/internal-app/.env.example",
"documentation_url": "https://github.com/yourcompany/docker-templates/tree/main/internal-app",
"tags": ["internal", "webapp", "postgres"]
}
]
}