# simple-http-server **Repository Path**: jaymii/simple-http-server ## Basic Information - **Project Name**: simple-http-server - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-04-23 - **Last Updated**: 2022-04-29 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 项目说明 http 模块中为一个简单实现的 http 服务器,而 test 模块中为对该 http 服务器的测试程序,运行 `main.go` 即可 运行期之后, 根目录下有 `test.http` 文件,可以执行里面的几个 http 接口来进行本次作业的测试 # 构建 docker 镜像 ``` cd test # 构建 docker 镜像 make docker-build # 尝试运行 docker run -it -p 10888:8889 jaymie/http-server:v0.1 ```