我正在尝试在 docker 容器内运行一个用 Golang 编写的 HTTP 服务器,但我一直被拒绝连接。一切都在我的 Windows 10 机器上运行的 Ubuntu 20.04 Server VM 内运行。
Go 服务器代码:
package main
import "github.com/lkelly93/scheduler/internal/server"
func main() {
server := server.NewHTTPServer()
server.Start(3000)
}
package server
import (
"context"
"fmt"
"net/http"
)
type HTTPServer interface {
Start(port int) error
Stop() error
}
func NewHTTPServer() HTTPServer {
return &httpServer{}
}
type httpServer struct {
server *http.Server
}
func (server *httpServer) Start(port int) error {
serveMux := newServeMux()
server.server = &http.Server {
Addr: fmt.Sprintf(":%d", port),
Handler: serveMux,
}
return server.server.ListenAndServe()
}
func (server *httpServer) Stop() error {
return server.server.Shutdown(context.Background())
}
我的 Dockerfile:
FROM ubuntu:20.04
RUN apt-get update -y
#Install needed packages
RUN apt-get install software-properties-common -y
RUN apt-get install python3 -y
RUN apt-get update -y
RUN apt-get install python3-pip -y
RUN apt-get install default-jre -y
#Install language dependacies
#Python
RUN pip3 install numpy
#Reduce VM size
# RUN rm -rf /var/lib/apt/lists/*
#Setup working DIRs
RUN mkdir secure
RUN mkdir secure/runner_files
COPY scheduler /secure
WORKDIR /secure
EXPOSE 3000
CMD ["./scheduler"] <-- The go server is compiled into a binary called scheduler
我构建给定的 Dockerfile,然后运行:
docker run -d --name scheduler -p 3000:3000 scheduler:latest
然后我抓住容器的地址:
docker inspect --format='{{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}' scheduler
->172.17.0.2
最后我使用 cURL 发送一个 http 请求:
curl http://172.17.0.2:3000/execute/python --data '{"Code":"print(\"Hello\")"}'
我正进入(状态
curl: (7) Failed to connect to 172.17.0.2 port 3000: Connection refused
但应该得到
{"Stdout":"Hello\n"}%
如果我在 Ubuntu VM 上运行 Go 服务器,从我的 Win10 机器调用它没有问题,但是当 Go 服务器存在于 Ubuntu 机器的 docker 容器中时,我似乎无法调用它。
Go 代码比这更复杂,但是在这里发布所有内容太多了,请随时查看https://github.com/lkelly93/scheduler上的整个 repo 。
最终它将成为我想要运行代码的网站的后端。像 LeetCode 或 Repl.it 这样的东西。
LEATH
叮当猫咪
慕的地6264312
相关分类