拨打tcp 127.0.0.1:8080:connect:连接被拒绝,go docker app

i86rm4rw  于 2023-11-14  发布在  Go
关注(0)|答案(2)|浏览(219)

我有两个Go语言的应用程序。user_management应用程序,我首先运行(docker-compose up --build),然后运行(docker-compose up--build)sport_app。sport_app依赖于user_management应用程序。

sport_app Dockerfile文件如下。

FROM golang:alpine

RUN apk update && apk upgrade && apk add --no-cache bash git openssh curl

WORKDIR /go-sports-entities-hierarchy

COPY . /go-sports-entities-hierarchy/
RUN rm -rf /go-sports-entities-hierarchy/.env
RUN go mod download
RUN chmod +x /go-sports-entities-hierarchy/scripts/*
RUN ./scripts/build.sh

ADD https://github.com/ufoscout/docker-compose-wait/releases/download/2.2.1/wait /wait
RUN chmod +x /wait

ENV GIN_MODE="debug" \
    GQL_SERVER_HOST="localhost" \
    GQL_SERVER_PORT=7777 \
    ALLOWED_ORIGINS=* \
    USER_MANAGEMENT_SERVER_URL="http://localhost:8080/user/me" \
    # GQLGen config
    GQL_SERVER_GRAPHQL_PATH="graphql" \
    GQL_SERVER_GRAPHQL_PLAYGROUND_ENABLED=true \
    GQL_SERVER_GRAPHQL_PLAYGROUND_PATH="playground" \
# Export necessary port
EXPOSE 7777

CMD /wait && ./scripts/run.sh

字符串

sport_app docker-compose.yml文件如下。

version: '3'

volumes:
  postgres_data:
      driver: local
services:
  go-sports-entities-hierarchy:
      restart: always
      build:
        dockerfile: Dockerfile
        context: .
      environment:
        WAIT_HOSTS: postgres:5432
        # Web framework config
        GIN_MODE: debug
        GQL_SERVER_HOST: go-sports-entities-hierarchy
        GQL_SERVER_PORT: 7777
        ALLOWED_ORIGINS: "*"
        USER_MANAGEMENT_SERVER_URL: http://localhost:8080/user/me
        # GQLGen config
        GQL_SERVER_GRAPHQL_PATH: graphql
        GQL_SERVER_GRAPHQL_PLAYGROUND_ENABLED: "true"
        GQL_SERVER_GRAPHQL_PLAYGROUND_PATH: playground
      ports:
        - 7777:7777
      depends_on:
        - postgres
        - redisearch
  go-sports-events-workflow:
      restart: always
      build:
        dockerfile: Dockerfile
        context: .
      environment:
        WAIT_HOSTS: postgres:5432
        # Web framework config
        GIN_MODE: debug
        GQL_SERVER_HOST: go-sports-events-workflow
        GQL_SERVER_PORT: 7778
        ALLOWED_ORIGINS: "*"
        # GQLGen config
        GQL_SERVER_GRAPHQL_PATH: graphql
        GQL_SERVER_GRAPHQL_PLAYGROUND_ENABLED: "true"
        GQL_SERVER_GRAPHQL_PLAYGROUND_PATH: playground
      depends_on:
        - postgres
        - redisearch
        - go-sports-entities-hierarchy

user_management app Dockerfile如下:

FROM golang:alpine

RUN apk update && apk add --no-cache git ca-certificates && update-ca-certificates

# Set necessary environmet variables needed for our image
ENV GO111MODULE=on \
    CGO_ENABLED=0 \
    GOOS=linux \
    GOARCH=amd64

# Move to working directory /build
WORKDIR /build

# Copy and download dependency using go mod
COPY go.mod .
COPY go.sum .
RUN go mod download

# Copy the code into the container
COPY . .

# Build the application
RUN go build -o main .

# Move to /dist directory as the place for resulting binary folder
WORKDIR /dist

# Copy binary from build to main folder
RUN cp -r /build/html .
RUN cp /build/main .

# Environment Variables
ENV DB_HOST="127.0.0.1" \
    APP_PROTOCOL="http" \
    APP_HOST="localhost" \
    APP_PORT=8080 \
    ALLOWED_ORIGINS="*"

# Export necessary port
EXPOSE 8080

ADD https://github.com/ufoscout/docker-compose-wait/releases/download/2.2.1/wait /wait
RUN chmod +x /wait

# Command to run when starting the container
CMD /wait && /dist/main

user_management app docker-compose.yml文件如下:

version: '3'

volumes:
  postgres_data:
      driver: local

services:
  postgres:
      image: postgres
      volumes:
        - postgres_data:/var/lib/postgresql/data
      ports:
        - 5432:5432
  go-user-management:
      restart: always
      build:
        dockerfile: Dockerfile
        context: .
      environment:
        # Postgres Details
        DB_PORT: 5432
        # APP details
        APP_PROTOCOL: http
        APP_HOST: localhost
        APP_PORT: 8080
        # System Configuration Details
        ALLOWED_ORIGINS: "*"
      ports:
        - 8080:8080
      depends_on:
        - postgres


在sport_app中,我写了下面的代码,得到了错误:

client := resty.New()
resp, err := client.R().SetHeader("Content-Type", "application/json").SetHeader("Authorization", "Bearer "+token).Get("http://localhost:8080/user/me")


错误是:**Get“http://localhost:8080/user/me”:dial tcp 127.0.0.1:8080:connect:connection refused:“**此API(http://localhost:8080/user/me)是在user_management app中编写的,可以正常工作,我与 Postman 确认。我已经阅读了此问题answers,但无法解决我的问题。我是docker新手,请帮助。

dgsult0t

dgsult0t1#

为了在多个docker-compose客户端之间进行通信,您需要确保要相互通信的容器位于同一网络上。
例如,(为简洁起见编辑)这里有一个docker-compose.yml

# sport_app docker-compose.yml
version: '3'
services:
  go-sports-entities-hierarchy:
    ...
    networks:
      - some-net
  go-sports-events-workflow
    ...
    networks:
      - some-net
networks:
  some-net:
    driver: bridge

字符串
另一个docker-compose.yml

# user_management app docker-compose.yml
version: '3'
services:
  postgres:
    ...
    networks:
      - some-net
  go-user-management
    ...
    networks:
      - some-net
networks:
  some-net:
    external: true


注意事项:您的应用网络的名称基于project name,该名称基于其所在目录的名称,在本例中添加了前缀user_
然后,它们可以使用服务名称(即go-user-management等)相互通信。
您可以在运行docker-compose up --build命令后,运行docker network ls命令来查看它,然后运行docker network inspect bridge等等。

2ic8powd

2ic8powd2#

要解决这个错误(拨号tcp [::1]:8080:connect:connection refused)所有你需要做的就是编辑你的主机文件,删除任何你不使用的IP,并设置你的新IP与localhost字像这样的图片enter image description here

相关问题