Generate Docker Compose files automatically for your tech stacks, saving you time and avoiding YAML madness.
Join the revolution at composergen.io and automate your container workflow today.
Integrate ComposerGen.io directly into your development workflow with our simple REST API.
POST /api/v1/generate.php
Generate a Docker Compose file based on your requirements.
{
"prompt": "A Redis server with Node.js app"
}
{
"choices": [
{
"message": {
"content": "version: '3'\nservices:\n redis:\n image: redis:alpine\n container_name: redis\n restart: unless-stopped\n volumes:\n - redis_data:/data\n ports:\n - \"6379:6379\"\n app:\n image: node:16-alpine\n container_name: node_app\n working_dir: /app\n volumes:\n - ./app:/app\n ports:\n - \"3000:3000\"\n depends_on:\n - redis\n command: sh -c \"npm install && npm start\""
}
}
]
}
{
"type": "need-clarification",
"options": [
"Traefik + Node.js",
"NGINX + Django",
"NGINX + Flask",
"Caddy + PHP",
"Traefik + Ruby on Rails",
"NGINX + React"
]
}
POST /api/v1/unsubscribe.php
Cancel your subscription and disable your API token.
{
"api_token": "your-api-token-here"
}
{
"success": true,
"message": "Successfully unsubscribed"
}
We provide sample code in multiple languages to help you get started with our API:
Use our API to integrate Docker Compose generation directly into your CI/CD pipeline or development tools.
Get API AccessYour request needs additional details. Please select one of the following options: