generate_docker_compose
Create a Docker Compose file template with specified services and optional database integrations like PostgreSQL and Redis for streamlined container setup.
Instructions
Generate a Docker Compose file template
Input Schema
Name | Required | Description | Default |
---|---|---|---|
include_database | No | Include database services (PostgreSQL, Redis) | |
services | Yes | List of service names to include |
Input Schema (JSON Schema)
{
"properties": {
"include_database": {
"description": "Include database services (PostgreSQL, Redis)",
"type": "boolean"
},
"services": {
"description": "List of service names to include",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"services"
],
"type": "object"
}