ENV 变量不通过 godotenv Docker

jpa*_*peg 6 environment-variables go docker docker-compose

我有一个用 Go、dockerised 和 gomod 编写的网络应用程序。

我无法让它读取环境变量。

运行 docker-compose up 时总是返回“Error getting env, not come through”

我正在使用 godotenv 来尝试这样做。下面是我的实现。我一生都无法弄清楚出了什么问题。如果有人能看到我遗漏的东西,你就救了一条命。

main.go、.env、docker-compose.yml 和 Dockerfile 都在项目的根目录下

main.go

func main() {
    router := mux.NewRouter()

    err := godotenv.Load()
    if err != nil {
        log.Fatalf("Error getting env, not comming through %v", err)
    } else {
        fmt.Println("We are getting the env values")
    }

    fmt.Println(os.Getenv("MY_ENV"))

}
Run Code Online (Sandbox Code Playgroud)

.env

MY_ENV=thisismyenvvariable
DB_HOST=testdata123
DB_DRIVER=testdata123
DB_USER="testdata123"
DB_PASSWORD=testdata123
DB_NAME=testdata123
DB_PORT=5432

Run Code Online (Sandbox Code Playgroud)

docker-compose.yml

version: '3'
services:
  app:
    container_name: template_123
    build: .
    ports: 
      - 8080:8080 
    restart: on-failure
    volumes:
      - api:/usr/src/app/
    env_file:
      - .env
    depends_on:
      - template-postgres          
    networks:
      - template


  template-postgres:
    image: postgres:latest
    container_name: startup_template_golang_db_postgres
    environment:
      - POSTGRES_USER=${DB_USER}  
      - POSTGRES_PASSWORD=${DB_PASSWORD}
      - POSTGRES_DB=${DB_NAME}
      - DATABASE_HOST=${DB_HOST} 
    ports:
      - '5432:5432'
    volumes:
      - database_postgres:/var/lib/postgresql/data
    env_file:
      - .env
    networks:
      - template
    
  pgadmin:
    image: dpage/pgadmin4
    container_name: pgadmin_container
    environment:
      PGADMIN_DEFAULT_EMAIL: ${PGADMIN_DEFAULT_EMAIL}
      PGADMIN_DEFAULT_PASSWORD: ${PGADMIN_DEFAULT_PASSWORD}
    depends_on:
      - template-postgres
    ports:
      - "5050:80"
    networks:
      - template
    restart: unless-stopped

volumes:
  api:
  database_postgres:                  

# Networks to be created to facilitate communication between containers
networks:
  startup_template:
    driver: bridge
Run Code Online (Sandbox Code Playgroud)

文件

# Start from golang base image
FROM golang:alpine as builder

# ENV GO111MODULE=on

# Add Maintainer info
LABEL maintainer="satoshi123"

# 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"]
Run Code Online (Sandbox Code Playgroud)

How*_*owl 5

如果你已经env_file在你的 中使用docker_compose.yml,你真的不需要 godotenv,因为环境已经从 docker-compose 传递下来:

version: '3'

services:
    app:
        image: busybox:latest
        command: sh -c 'echo "Hello $$USER!"'
        env_file:
            - .env
Run Code Online (Sandbox Code Playgroud)
# .env
USER=user1
Run Code Online (Sandbox Code Playgroud)
# .env
USER=user1
Run Code Online (Sandbox Code Playgroud)

这比尝试将 .env 文件复制到容器中要好,因为这意味着您可以传递环境变量而不必每次都重新构建容器;)

如果您仍然想使用 godotenv,我发现只需COPY --from=builder /app/.env .从 Dockerfile 中取消注释该行,.env 文件就会正确加载(因为 godotenv 在目录中找到它,而如果对其进行了注释,则不会)。

$ docker-compose up
Starting template_123 ... done
Attaching to template_123
template_123 | We are getting the env values
template_123 | thisismyenvvariable
template_123 exited with code 0
Run Code Online (Sandbox Code Playgroud)

如果您想让它与您的文件系统保持同步,您将需要使用一个卷将您的 .env 与您的文件系统上的那个连接起来,或者正如我所说,godotenv完全放弃,因为它在您的情况下并没有真正的用处。