Skip to main content
Glama
services.yml845 B
# Docker compose services definition version: '3.8' services: web: image: nginx:latest ports: - "80:80" - "443:443" volumes: - ./html:/usr/share/nginx/html environment: - NGINX_HOST=localhost - NGINX_PORT=80 networks: - frontend api: image: node:18 ports: - "3000:3000" depends_on: - database environment: - NODE_ENV=production - DB_HOST=database networks: - frontend - backend database: image: postgres:15 ports: - "5432:5432" environment: - POSTGRES_DB=mydb - POSTGRES_USER=admin - POSTGRES_PASSWORD=password volumes: - db-data:/var/lib/postgresql/data networks: - backend networks: frontend: driver: bridge backend: driver: bridge volumes: db-data:

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/oraios/serena'

If you have feedback or need assistance with the MCP directory API, please join our Discord server