gpt4 book ai didi

docker - ENV 变量不通过 godotenv Docker

转载 作者:行者123 更新时间:2023-12-04 11:50:23 25 4
gpt4 key购买 nike

我有一个用 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"))

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

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
Dockerfile
# 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"]

最佳答案

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

version: '3'

services:
app:
image: busybox:latest
command: sh -c 'echo "Hello $$USER!"'
env_file:
- .env
# .env
USER=user1
$ docker-compose up
Recreating test_app_1 ... done
Attaching to test_app_1
app_1 | Hello user1!
test_app_1 exited with code 0
这比尝试将 .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
如果您想让它与您的文件系统保持同步,您将需要使用一个卷将您的 .env 与您的文件系统上的那个链接起来,或者正如我所说的那样,抛弃 godotenv完全因为它在您的情况下并没有真正有用。

关于docker - ENV 变量不通过 godotenv Docker,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66314534/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com