docker-compose.yml 750 B

123456789101112131415161718192021222324252627282930313233
  1. services:
  2. feishu:
  3. build:
  4. context: .
  5. dockerfile: docker/Dockerfile.feishu
  6. image: agent/feishu:latest
  7. container_name: agent-feishu
  8. restart: unless-stopped
  9. volumes:
  10. - ./gateway/core/channels/feishu/openclaw-lark/src/http/config.yml:/app/config.yml
  11. env_file:
  12. - .env
  13. environment:
  14. - FEISHU_HTTP_PORT=4380
  15. - GATEWAY_FEISHU_WEBHOOK_URL=http://localhost:8000/api/channels/feishu/openclaw/webhook
  16. networks:
  17. - agent
  18. gateway:
  19. build:
  20. context: .
  21. dockerfile: docker/Dockerfile.gateway
  22. image: agent/gateway:latest
  23. container_name: agent-gateway
  24. restart: unless-stopped
  25. env_file:
  26. - .env
  27. networks:
  28. - agent
  29. networks:
  30. agent:
  31. name: agent