函数工作流 FUNCTIONGRAPH-使用容器镜像创建并执行HTTP函数:步骤二:本地验证

时间:2025-01-06 20:00:57

步骤二:本地验证

  1. 启动docker容器
    docker run -u 1003:1003 -p 8000:8000 custom_container_http_example:latest
  1. 打开一个新的命令行窗口,向开放的8000端口发送消息,支持访问模板代码中根目录“/”下所有路径,以下以“helloworld”为例。
    curl -XPOST -H 'Content-Type: application/json' -d '{"message":"HelloWorld"}' localhost:8000/helloworld
    按照模块代码中返回
    Hello FunctionGraph, method POST
  1. 在容器启动端口可以看到
    receive {"message":"HelloWorld"}

    或者使用docker logs命令获取容器的日志

support.huaweicloud.com/qs-functiongraph/functiongraph_04_0103.html