>本指南演示了设置docker容器中的GO应用程序的实时重载和调试,以镜像Node.js开发工作流程。 虽然此特定GO设置的在线资源很少,但这种方法将一致的Docker环境的好处与实时重载的效率和调试的力量相结合。
>密钥差异: live-realoading在代码更改上重新启动应用程序; >热重载
修补了不重新启动的内存。调试,对于有效开发至关重要,超过了基于日志的故障排除。 Docker确保跨环境的应用程序行为一致。 >
>环境:本指南使用Windows 11带有WSL(Windows子系统的Linux),但适用于Linux(相同的步骤)和MACOS(相似)。 强烈建议Windows Go开发WSL,因为它的速度与本机Windows File System相比。
技术堆栈:
Golang Server(光纤示例):
> 创建:
main.go
>用
<code class="language-go">package main import "github.com/gofiber/fiber/v2" func main() { app := fiber.New() app.Get("/", func(c *fiber.Ctx) error { str := "Hello, World!" return c.SendString(str) }) app.Listen(":3000") }</code>
go run .
> docker设置(
docker-compose.yml
<code class="language-yaml">api: build: context: ./api dockerfile: Dockerfile ports: - '3000:3000' - '2345:2345' stop_grace_period: 0.1s volumes: - ./api:/app networks: - internal</code>
build.context
ports
目录安装到容器中。volumes
api
> dockerfile(/app
):
api/Dockerfile
空气和delve配置():
<code class="language-dockerfile">FROM golang:1.23.2-alpine3.20 WORKDIR /app RUN go install github.com/go-delve/delve/cmd/dlv@latest RUN go install github.com/air-verse/air@latest COPY go.mod go.sum ./ RUN go mod download USER root # For development only EXPOSE 2345 EXPOSE 3000 CMD ["air", "-c", "air.toml"]</code>
这将配置空气使用Delve启用了启用调试的应用程序。
在
api/air.toml
此配置VS代码以连接到Docker容器中运行的Delve调试器。 调整以匹配您的项目的路径。
<code class="language-toml">root = "." tmp_dir = "tmp" [build] full_bin = "dlv debug --build-flags=\"-gcflags='all=-N -l'\" --listen 0.0.0.0:2345 --headless --continue --accept-multiclient --output=dist/debug"</code>
。
>以上是在 Docker 容器内实时重新加载和调试 Go 应用程序的详细内容。更多信息请关注PHP中文网其他相关文章!