wengad82 opened a new issue #1212: bin/start_fe.sh: line 59: 
/home/doris/run/fe/conf/fe.conf: No such file or directory
URL: https://github.com/apache/incubator-doris/issues/1212
 
 
   Dockerfile:
   
   > FROM centos:7.2.1511
   
   RUN mkdir /home/doris/run/ -p
   
   # copy jdk and doris binary
   COPY jdk1.8.0_92 /home/doris/run/jdk1.8.0_92/
   COPY fe/ /home/doris/run/fe/
   
   # set java home
   ENV JAVA_HOME /home/doris/run/jdk1.8.0_92/ 
   ENV DORIS_HOME /home/doris/run/fe
   
   # set fe port: http/thrift/mysql/bdbje
   EXPOSE 8030 9020 9030 9010
   
   # fe log and meta-data
   VOLUME 
["/home/doris/run/fe/conf","/home/doris/run/fe/log","/home/doris/run/fe/doris-meta"]
   
   WORKDIR /home/doris/run/fe/
   
   RUN pwd;find . -iname "*"
   
   CMD "bin/start_fe.sh"
   
   
   为什么使用如下创建容器都会报错
   docker run -d -p 8030:8030 -p 9020:9020 -p 9030:9030  -p 9010:9010 \
    -v /home/doris/ferun/log:/home/doris/run/fe/log \
    -v /home/doris/ferun/conf:/home/doris/run/fe/conf \
    -v /home/doris/ferun/doris-meta:/home/doris/run/fe/doris-meta \
    -e TZ=Asia/Shanghai --privileged=true --name fe mathings.com/doris-fe:0.9 
   
    错误内容
   bin/start_fe.sh: line 59: /home/doris/run/fe/conf/fe.conf: No such file or 
directory
   
   把conf目录不做映射,就没问题?
   

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to