php小编鱼仔发现许多开发者在使用docker-compose时遇到了一个常见的问题,即无法访问Go REST API。这个问题可能导致开发者无法正常进行API的测试和调试工作。在本文中,我们将分享一些解决该问题的方法和技巧,帮助开发者顺利使用docker-compose访问Go REST API,提高开发效率。
我正在尝试使用 gin gonic 和 mysql 以及 phpmyadmin 和 docker 运行一个简单的 go rest api。
虽然 phpmyadmin 运行正常,但当我尝试访问我的 go api 时,我收到以下错误消息:localhost 未发送任何数据。 err_empty_response
如果我在没有 docker 的情况下运行 main.go
文件,一切都会按预期工作
这是我的 docker-compose
文件
version: '3' services: app: container_name: full_app build: . ports: - 8080:8080 expose: - 8080 restart: on-failure environment: - pma_host=fullstack-mysql - db_name=${db_name} - db_user=${db_user} - db_password=${db_port} volumes: - .:/usr/src/app/ depends_on: - fullstack-mysql networks: - fullstack fullstack-mysql: image: mysql:5.7 container_name: full_db_mysql ports: - 3306:3306 environment: - mysql_root_host=${db_host} - mysql_user=${db_user} - mysql_root_user=${db_root_user} - mysql_password=${db_password} - mysql_root_password=${db_root_password} - mysql_database=${db_name} - mysql_root_password=${db_password} volumes: - database_mysql:/var/lib/mysql networks: - fullstack phpmyadmin: image: phpmyadmin/phpmyadmin container_name: phpmyadmin_container depends_on: - fullstack-mysql environment: - pma_host=fullstack-mysql - pma_user=${db_user} - pma_port=${db_port} - pma_password=${db_password} ports: - 9090:80 restart: always networks: - fullstack volumes: api: database_mysql: # networks to be created to facilitate communication between containers networks: fullstack: driver: bridge
这是我的 dockerfile
:
# start from golang base image from golang:alpine as builder # env go111module=on # install git. # git is required for fetching the dependencies. run apk update && apk add --no-cache git # set the current working directory inside the container workdir /app # copy go mod and sum files copy go.mod go.sum ./ # download all dependencies. dependencies will be cached if the go.mod and the go.sum files are not changed run go mod download # copy the source from the current directory to the working directory inside the container copy . . # build the go app run cgo_enabled=0 goos=linux go build -a -installsuffix cgo -o main . # start a new stage from scratch from alpine:latest run apk --no-cache add ca-certificates workdir /root/ # copy the pre-built binary file from the previous stage. observe we also copied the .env file copy --from=builder /app/main . copy --from=builder /app/.env . # expose port 8080 to the outside world expose 8080 #command to run the executable cmd ["./main"]
这是我的 go main.go
文件(目前):
package main import ( "github.com/gin-gonic/gin" "log" "net/http" ) func main() { router := gin.Default() router.GET("/", func(context *gin.Context) { context.JSON(http.StatusOK, gin.H{"data": "Hello World !"}) }) router.Run("localhost:8080") }
如果我访问 http://localhost:9090
phpmyadmin 正在加载(正是我所期望的)
如果我访问 http://localhost:8080
我收到此错误消息:localhost 未发送任何数据。 err_empty_response
我收到此错误消息:
docker-compose up --build
我为此运行
main.go
问题似乎在于您的 go 代码以及我为 api 指定侦听主机的方式。在我的
main.go
文件中的 router.run
要解决此问题,我必须修改
router.run
行,如下所示:
router.Run("0.0.0.0:8080")
http://localhost:8080
进行此更改后,我重建了 docker 映像并使用 docker-compose up --build 再次运行容器。这应该允许在 docker 容器外部的 上访问我的 go rest api。
localhost
注意:容器内的
以上是使用 docker-compose 无法访问 Go REST API的详细内容。更多信息请关注PHP中文网其他相关文章!