gpt4 book ai didi

azure - 如何使用 azure 管道变量为我的 docker 镜像设置环境变量?

转载 作者:行者123 更新时间:2023-12-03 03:40:59 25 4
gpt4 key购买 nike

我有一个 azure 的管道,我想用它来部署我的 Rails 应用程序。该应用程序有一个 Dockerfile 和一个 docker-compose 文件。

我试图将 RAILS_MASTER_KEY 设置为管道中的 secret 变量,然后将其引用为我的 docker compose 文件中的环境变量。

我可以确认代理正在使用管道 yaml 中的 echo 正确设置变量。但是,环境变量没有正确传递/设置到我的 docker-compose 以及最终的 Dockerfile。

我花了几天时间阅读 Azure 文档、堆栈溢出和它无法正常工作来解决此问题。

https://learn.microsoft.com/en-us/azure/devops/pipelines/process/variables?view=azure-devops&tabs=yaml%2Cbatch#secret-variables

这是我的代码:

azure-pipelines.yaml:

steps:
- script: echo "test $(RAILS_MASTER_KEY)"
- script: echo "test $(testvar)"
- task: DockerCompose@0
inputs:
containerregistrytype: 'Azure Container Registry'
azureSubscription: 'de-identified'
azureContainerRegistry: '{"loginServer":""de-identified"", "id" : "de-identified"}'
dockerComposeFile: '**/docker-compose.yml'
dockerComposeFileArgs: |
RAILS_MASTER_KEY=$(RAILS_MASTER_KEY)
testvar=$(testvar)
action: 'Build services'
env:
RAILS_MASTER_KEY: $(RAILS_MASTER_KEY)

docker-compose.yml:

version: "3.3"
services:
web:
build: .
command: command: bash -c "rm -f tmp/pids/server.pid && bundle exec rails s -p 3000 -b '0.0.0.0' && echo ${RAILS_MASTER_KEY}"
volumes:
- .:/app
ports:
- "3000:3000"
environment:
RAILS_MASTER_KEY: ${RAILS_MASTER_KEY}
testvar: ${testvar}

Dockerfile:

FROM ruby:3.1.0-slim

RUN apt-get update && apt-get install -y --no-install-recommends \
build-essential \
libpq-dev \
postgresql-client \
git \
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*

WORKDIR /app
COPY Gemfile /app/Gemfile
COPY Gemfile.lock /app/Gemfile.lock
ENV BUNDLER_VERSION 2.3.5
ENV RAILS_ENV production
ENV RAILS_MASTER_KEY ${RAILS_MASTER_KEY}
ENV testvar ${testvar}
ENV RAILS_SERVE_STATIC_FILES true
ENV RAILS_LOG_TO_STDOUT true
RUN echo "----------------key is 1. ${RAILS_MASTER_KEY}"
RUN echo "----------------key is 11. $( testvar )"
RUN echo "----------------key is 12. $testvar"
RUN echo "----------------key is 2. $[variables.RAILS_MASTER_KEY]"
RUN echo "----------------key is 4. $(RAILS_MASTER_KEY)"
RUN gem install bundler -v $BUNDLER_VERSION
RUN bundle config set --local without 'development test'
RUN bundle install
COPY . .
RUN rm -f /app/tmp/pids/server.pid
EXPOSE 3000
CMD ["bundle", "exec", "rails", "s", "-e", "production", "-b", "0.0.0.0"]

如您所见,我在尝试调试此问题时尝试了 echo,因此请忽略所有 echo 语句。任何帮助/指导将不胜感激。谢谢。

最佳答案

从上面的代码片段来看,您似乎正在使用 dockerComposeFileArgs 来指定环境变量。对于类似情况(以及本地调试目的),一种派上用场的选项是在 Dockerfile 中使用 ARG。例如

FROM ruby:3.1.0-slim

RUN ...

ARG RAILS_MASTER_KEY
ENV RAILS_MASTER_KEY=$RAILS_MASTER_KEY

...

这样您就可以在构建时使用 Azure DevOps 中的 secret 变量指定RAILS_MASTER_KEY

在这里您可以找到一些讨论 ENVARGS 关键字的有用帖子:

关于azure - 如何使用 azure 管道变量为我的 docker 镜像设置环境变量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/71298369/

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