我创建了一个Dockerfile在32位Ubuntu映像上安装IBM Rational Rhapsody,该映像可以在Windows 7上使用Docker 18.03.0-ce正确构建,但是在Linux Mint 19 VM上无法在Docker 18.09.2上运行(Ubuntu Bionic仓库) )。 IBM的基于Java的安装程序引发了权限问题,而Docker变更日志并未显示任何明显的原因。
直到失败命令为止的Dockerfile如下:
FROM i386/ubuntu:xenial-20181005 AS installation
ARG DEBIAN_FRONTEND=noninteractive
RUN apt-get update && apt-get install -y --no-install-recommends unzip
COPY Rhapsody812Linux.zip .
RUN unzip -qq Rhapsody812Linux.zip -d Rhapsody812Linux
RUN cd Rhapsody812Linux/disk1/im/installer.linux.gtk.x86 \
&& ./installc input install-rhapsody.xml -acceptLicense
我看到的失败是:
org.eclipse.core.runtime.CoreException: Failed to create artifact table of contents at '/var/ibm/InstallationManager/installRegistry/metadata'.
...IBM's library stack trace truncated by me...
Caused by: java.io.IOException: Permission denied
at sun.nio.ch.FileChannelImpl$1.release(FileChannelImpl.java:115)
at sun.nio.ch.FileChannelImpl$SimpleFileLockTable.removeAll(FileChannelImpl.java:1024)
at sun.nio.ch.FileChannelImpl.implCloseChannel(FileChannelImpl.java:112)
at java.nio.channels.spi.AbstractInterruptibleChannel.close(AbstractInterruptibleChannel.java:108)
...IBM's library stack trace truncated by me...
ERROR: Error restoring Installation Manager state.
ERROR: Failed to create InstallRegistry metadata repository: /var/ibm/InstallationManager/installRegistry/metadata.
我发现了一个论坛帖子,指出如果无法访问/tmp
,这似乎会发生:
drwxr-xr-x 2 root root 4096 Mar 18 20:35 /tmp
我以交互方式运行Ubuntu Xenial映像以查看可以找到的内容,并且安装程序确实创建了/var/ibm/InstallationManager/installRegistry/metadata
,所以我不确定权限问题来自何处。
这些Docker版本之间可能有什么不同,如何解决新版本中的构建失败?
答案 0 :(得分:0)
连续运行安装程序多次后,出现“ CRIMC1086E错误”,并发现IBM Knowledge Center entry提及此代码。它建议禁用IBM Installation Manager的存储库锁定,从而为我解决了这个问题。
要禁用存储库锁定,请将cic.repo.locking=false
添加到config.ini
。就我而言,我在Dockerfile中添加了以下内容:
# Disable repo lock to avoid potential permissions issue when lock is released
# Experienced with Docker 18.09.2 on a Linux Mint 19 VM
RUN cd Rhapsody812Linux/disk1/im/installer.linux.gtk.x86/configuration \
&& echo 'cic.repo.locking=false' >> config.ini