所以,我用法师GenerateCustomBeat建立了一个节拍,它运行正常,除了,现在我正在尝试对其进行容器化。运行生成的镜像时,它抱怨未找到customBeat.yml。
我通过在Dockerfile的末尾添加RUN ls .
行来确保文件存在于文件夹中。
节拍名称为coletorbeat,因此该名称在Dockerfile中多次出现。
执行sudo docker run coletorbeat
后,我收到以下错误消息:Exiting: error loading config file: stat coletorbeat.yml: no such file or directory
如果在执行节拍时可以指定coletorbeat.yml文件的位置,我想可以用CMD
解决,但是我还没有找到解决方法。
我将在下面发布Dockerfile。我知道搅拌器文件夹中的代码工作正常。我猜我在容器化方面犯了一些错误。
Dockerfile:
FROM ubuntu
MAINTAINER myNameHere
ARG ${ip:-"333.333.333.333"}
ARG ${porta:-"4343"}
ARG ${dataInicio:-"2020-01-07"}
ARG ${dataFim:-"2020-01-07"}
ARG ${tipoEquipamento:-"type"}
ARG ${versao:-"2"}
ARG ${nivel:-"0"}
ARG ${instituicao:-"RJ"}
ADD . .
RUN mkdir /etc/coletorbeat
COPY /coletorbeat/coletorbeat.yml /etc/coletorbeat/coletorbeat.yml
RUN apt-get update && \
apt-get install -y wget git
RUN wget https://storage.googleapis.com/golang/go1.14.4.linux-amd64.tar.gz
RUN tar -zxvf go1.14.*.linux-amd64.tar.gz -C /usr/local
RUN mkdir /go
ENV GOROOT /usr/local/go
ENV GOPATH $HOME/go
ENV PATH $PATH:$GOROOT/bin:$GOPATH/bin
RUN echo $PATH
RUN go get -u -d github.com/magefile/mage
RUN cd $GOPATH/src/github.com/magefile/mage && \
go run bootstrap.go
RUN apt-get install -y python3-venv
RUN apt-get install -y build-essential
RUN cd /coletorbeat && chmod go-w coletorbeat.yml && ./coletorbeat setup
RUN cd /coletorbeat && ./coletorbeat test config -c /coletorbeat/coletorbeat.yml && ls .
CMD ./coletorbeat/coletorbeat -E 'coletorbeat.ip=${ip}'
最佳答案
您正在将yml文件添加到/ etc目录中
COPY /coletorbeat/coletorbeat.yml /etc/coletorbeat/coletorbeat.yml
但是然后在/coletorbeat
上运行命令而不使用etc.