请问啥时候 在docker hub中可以看到1.12版本的镜像?
|
目前社区在将镜像推到docker hub的过程中遇到了点问题,正在解决
具体你可以跟进一下这个PR https://github.com/docker-library/official-images/pull/9249 当前你也可以自己build一个镜像来使用,方法如下: git clone https://github.com/apache/flink-docker.git git checkout dev-master./add-custom.sh -u https://apache.website-solution.net/flink/flink-1.12.0/flink-1.12.0-bin-scala_2.11.tgz -n flink-1.12.0cd dev/flink-1.12.0-debiandocker build . -t flink:flink-1.12.0docker push flink:flink-1.12.0 jiangjiguang719 <[hidden email]> 于2020年12月9日周三 下午5:09写道: > 请问啥时候 在docker hub中可以看到1.12版本的镜像? |
请教下 git checkout dev-master./add-custom.sh -u https://apache.website-solution.net/flink/flink-1.12.0/flink-1.12.0-bin-scala_2.11.tgz -n flink-1.12.0 这是一条指令吗?感觉执行不了
另外直接 git clone https://github.com/apache/flink-docker.git 在里面的1.12目录中选择2.11的进去,直接dock build -t flink:1.12.0 .可以吗,我尝试直接这样构建出来的镜像好像不能跑 在2020年12月16日 10:56,Yang Wang 写道: 目前社区在将镜像推到docker hub的过程中遇到了点问题,正在解决 具体你可以跟进一下这个PR https://github.com/docker-library/official-images/pull/9249 当前你也可以自己build一个镜像来使用,方法如下: git clone https://github.com/apache/flink-docker.git git checkout dev-master./add-custom.sh -u https://apache.website-solution.net/flink/flink-1.12.0/flink-1.12.0-bin-scala_2.11.tgz -n flink-1.12.0cd dev/flink-1.12.0-debiandocker build . -t flink:flink-1.12.0docker push flink:flink-1.12.0 jiangjiguang719 <[hidden email]> 于2020年12月9日周三 下午5:09写道: > 请问啥时候 在docker hub中可以看到1.12版本的镜像? |
你直接clone下来,然后cd到1.12目录,这样build出来的镜像也是可以的
你用build的镜像启动Flink任务是报什么错呢,我这边试了一下是可以正常运行的 - git clone https://github.com/apache/flink-docker.git - cd scala_2.11-java8-debian - sudo docker build -t flink:1.12.0 . - docker push Best, Yang superainbower <[hidden email]> 于2020年12月17日周四 上午7:19写道: > 请教下 git checkout dev-master./add-custom.sh -u > https://apache.website-solution.net/flink/flink-1.12.0/flink-1.12.0-bin-scala_2.11.tgz > -n flink-1.12.0 这是一条指令吗?感觉执行不了 > 另外直接 > git clone https://github.com/apache/flink-docker.git > 在里面的1.12目录中选择2.11的进去,直接dock build -t flink:1.12.0 .可以吗,我尝试直接这样构建出来的镜像好像不能跑 > > 在2020年12月16日 10:56,Yang Wang 写道: > 目前社区在将镜像推到docker hub的过程中遇到了点问题,正在解决 > 具体你可以跟进一下这个PR https://github.com/docker-library/official-images/pull/9249 > > 当前你也可以自己build一个镜像来使用,方法如下: > > git clone https://github.com/apache/flink-docker.git > git checkout dev-master./add-custom.sh -u > > https://apache.website-solution.net/flink/flink-1.12.0/flink-1.12.0-bin-scala_2.11.tgz > -n > <https://apache.website-solution.net/flink/flink-1.12.0/flink-1.12.0-bin-scala_2.11.tgz-n> > flink-1.12.0cd dev/flink-1.12.0-debiandocker build . -t > flink:flink-1.12.0docker push flink:flink-1.12.0 > > > > jiangjiguang719 <[hidden email]> 于2020年12月9日周三 下午5:09写道: > > > 请问啥时候 在docker hub中可以看到1.12版本的镜像? > |
您好,镜像打完之后,向K8S提交jobmanager-job.yaml的时候,jobmanager起不来,看日志,日志里报镜像时的docker-entrypoint.sh脚本第102行缺少 ),我比对了下1.12 和1.11镜像里的 docker-entrypoint.sh,1.12里102行( _args=("${_args[@]:1}")对应的是 一个新加的 方法
disable_jemalloc_env() { # use nameref '_args' to update the passed 'args' within function local -n _args=$1 if [ "${_args[0]}" = ${COMMAND_DISABLE_JEMALLOC} ]; then echo "Disable Jemalloc as the memory allocator" _args=("${_args[@]:1}") else echo "Enable Jemalloc as the memory allocator via appending env variable LD_PRELOAD with /usr/lib/x86_64-linux-gnu/libjemalloc.so" export LD_PRELOAD=$LD_PRELOAD:/usr/lib/x86_64-linux-gnu/libjemalloc.so fi } 另外我看了1.12的文档,yaml文件和1.11应该没有区别,原先的yaml文件在1.11.1的版本是可以正常执行的 | | superainbower | | [hidden email] | 签名由网易邮箱大师定制 在2020年12月17日 14:08,Yang Wang<[hidden email]> 写道: 你直接clone下来,然后cd到1.12目录,这样build出来的镜像也是可以的 你用build的镜像启动Flink任务是报什么错呢,我这边试了一下是可以正常运行的 - git clone https://github.com/apache/flink-docker.git - cd scala_2.11-java8-debian - sudo docker build -t flink:1.12.0 . - docker push Best, Yang superainbower <[hidden email]> 于2020年12月17日周四 上午7:19写道: 请教下 git checkout dev-master./add-custom.sh -u https://apache.website-solution.net/flink/flink-1.12.0/flink-1.12.0-bin-scala_2.11.tgz -n flink-1.12.0 这是一条指令吗?感觉执行不了 另外直接 git clone https://github.com/apache/flink-docker.git 在里面的1.12目录中选择2.11的进去,直接dock build -t flink:1.12.0 .可以吗,我尝试直接这样构建出来的镜像好像不能跑 在2020年12月16日 10:56,Yang Wang 写道: 目前社区在将镜像推到docker hub的过程中遇到了点问题,正在解决 具体你可以跟进一下这个PR https://github.com/docker-library/official-images/pull/9249 当前你也可以自己build一个镜像来使用,方法如下: git clone https://github.com/apache/flink-docker.git git checkout dev-master./add-custom.sh -u https://apache.website-solution.net/flink/flink-1.12.0/flink-1.12.0-bin-scala_2.11.tgz -n <https://apache.website-solution.net/flink/flink-1.12.0/flink-1.12.0-bin-scala_2.11.tgz-n> flink-1.12.0cd dev/flink-1.12.0-debiandocker build . -t flink:flink-1.12.0docker push flink:flink-1.12.0 jiangjiguang719 <[hidden email]> 于2020年12月9日周三 下午5:09写道: 请问啥时候 在docker hub中可以看到1.12版本的镜像? |
In reply to this post by Yang Wang
hi,我重新git下来,build又可以了,可能之前我下的有文件有问题
在2020年12月17日 14:08,Yang Wang 写道: 你直接clone下来,然后cd到1.12目录,这样build出来的镜像也是可以的 你用build的镜像启动Flink任务是报什么错呢,我这边试了一下是可以正常运行的 - git clone https://github.com/apache/flink-docker.git - cd scala_2.11-java8-debian - sudo docker build -t flink:1.12.0 . - docker push Best, Yang superainbower <[hidden email]> 于2020年12月17日周四 上午7:19写道: > 请教下 git checkout dev-master./add-custom.sh -u > https://apache.website-solution.net/flink/flink-1.12.0/flink-1.12.0-bin-scala_2.11.tgz > -n flink-1.12.0 这是一条指令吗?感觉执行不了 > 另外直接 > git clone https://github.com/apache/flink-docker.git > 在里面的1.12目录中选择2.11的进去,直接dock build -t flink:1.12.0 .可以吗,我尝试直接这样构建出来的镜像好像不能跑 > > 在2020年12月16日 10:56,Yang Wang 写道: > 目前社区在将镜像推到docker hub的过程中遇到了点问题,正在解决 > 具体你可以跟进一下这个PR https://github.com/docker-library/official-images/pull/9249 > > 当前你也可以自己build一个镜像来使用,方法如下: > > git clone https://github.com/apache/flink-docker.git > git checkout dev-master./add-custom.sh -u > > https://apache.website-solution.net/flink/flink-1.12.0/flink-1.12.0-bin-scala_2.11.tgz > -n > <https://apache.website-solution.net/flink/flink-1.12.0/flink-1.12.0-bin-scala_2.11.tgz-n> > flink-1.12.0cd dev/flink-1.12.0-debiandocker build . -t > flink:flink-1.12.0docker push flink:flink-1.12.0 > > > > jiangjiguang719 <[hidden email]> 于2020年12月9日周三 下午5:09写道: > > > 请问啥时候 在docker hub中可以看到1.12版本的镜像? > |
OK,我看目前flink-docker项目里面的docker-entrypoint.sh是正常,有其他问题你再继续反馈
Best, Yang superainbower <[hidden email]> 于2020年12月18日周五 上午8:33写道: > hi,我重新git下来,build又可以了,可能之前我下的有文件有问题 > > 在2020年12月17日 14:08,Yang Wang 写道: > 你直接clone下来,然后cd到1.12目录,这样build出来的镜像也是可以的 > > 你用build的镜像启动Flink任务是报什么错呢,我这边试了一下是可以正常运行的 > > - git clone https://github.com/apache/flink-docker.git > - cd scala_2.11-java8-debian > - sudo docker build -t flink:1.12.0 . > - docker push > > > Best, > Yang > > superainbower <[hidden email]> 于2020年12月17日周四 上午7:19写道: > > > 请教下 git checkout dev-master./add-custom.sh -u > > > https://apache.website-solution.net/flink/flink-1.12.0/flink-1.12.0-bin-scala_2.11.tgz > > -n flink-1.12.0 这是一条指令吗?感觉执行不了 > > 另外直接 > > git clone https://github.com/apache/flink-docker.git > > 在里面的1.12目录中选择2.11的进去,直接dock build -t flink:1.12.0 > .可以吗,我尝试直接这样构建出来的镜像好像不能跑 > > > > 在2020年12月16日 10:56,Yang Wang 写道: > > 目前社区在将镜像推到docker hub的过程中遇到了点问题,正在解决 > > 具体你可以跟进一下这个PR > https://github.com/docker-library/official-images/pull/9249 > > > > 当前你也可以自己build一个镜像来使用,方法如下: > > > > git clone https://github.com/apache/flink-docker.git > > git checkout dev-master./add-custom.sh -u > > > > > https://apache.website-solution.net/flink/flink-1.12.0/flink-1.12.0-bin-scala_2.11.tgz > > -n > > < > https://apache.website-solution.net/flink/flink-1.12.0/flink-1.12.0-bin-scala_2.11.tgz-n > > > > flink-1.12.0cd dev/flink-1.12.0-debiandocker build . -t > > flink:flink-1.12.0docker push flink:flink-1.12.0 > > > > > > > > jiangjiguang719 <[hidden email]> 于2020年12月9日周三 下午5:09写道: > > > > > 请问啥时候 在docker hub中可以看到1.12版本的镜像? > > > |
使用git clone没问题,但是使用下载然后再上传服务器上进行编译就会出现问题
------------------ 原始邮件 ------------------ 发件人: "user-zh" <[hidden email]>; 发送时间: 2020年12月18日(星期五) 中午11:17 收件人: "user-zh"<[hidden email]>; 主题: Re: flink1.12 docker 镜像啥时候有 OK,我看目前flink-docker项目里面的docker-entrypoint.sh是正常,有其他问题你再继续反馈 Best, Yang superainbower <[hidden email]> 于2020年12月18日周五 上午8:33写道: > hi,我重新git下来,build又可以了,可能之前我下的有文件有问题 > > 在2020年12月17日 14:08,Yang Wang 写道: > 你直接clone下来,然后cd到1.12目录,这样build出来的镜像也是可以的 > > 你用build的镜像启动Flink任务是报什么错呢,我这边试了一下是可以正常运行的 > > - git clone https://github.com/apache/flink-docker.git > - cd scala_2.11-java8-debian > - sudo docker build -t flink:1.12.0 . > - docker push > > > Best, > Yang > > superainbower <[hidden email]> 于2020年12月17日周四 上午7:19写道: > > > 请教下 git checkout dev-master./add-custom.sh -u > > > https://apache.website-solution.net/flink/flink-1.12.0/flink-1.12.0-bin-scala_2.11.tgz > > -n flink-1.12.0 这是一条指令吗?感觉执行不了 > > 另外直接 > > git clone https://github.com/apache/flink-docker.git > > 在里面的1.12目录中选择2.11的进去,直接dock build -t flink:1.12.0 > .可以吗,我尝试直接这样构建出来的镜像好像不能跑 > > > > 在2020年12月16日 10:56,Yang Wang 写道: > > 目前社区在将镜像推到docker hub的过程中遇到了点问题,正在解决 > > 具体你可以跟进一下这个PR > https://github.com/docker-library/official-images/pull/9249 > > > > 当前你也可以自己build一个镜像来使用,方法如下: > > > > git clone https://github.com/apache/flink-docker.git > > git checkout dev-master./add-custom.sh -u > > > > > https://apache.website-solution.net/flink/flink-1.12.0/flink-1.12.0-bin-scala_2.11.tgz > > -n > > < > https://apache.website-solution.net/flink/flink-1.12.0/flink-1.12.0-bin-scala_2.11.tgz-n > > > > flink-1.12.0cd dev/flink-1.12.0-debiandocker build . -t > > flink:flink-1.12.0docker push flink:flink-1.12.0 > > > > > > > > jiangjiguang719 <[hidden email]> 于2020年12月9日周三 下午5:09写道: > > > > > 请问啥时候 在docker hub中可以看到1.12版本的镜像? > > > |
Free forum by Nabble | Edit this page |