呐,能搜到的什么RUN用一条这种就不说了。就说一点吧,Dockerfile如果你做到了精简到极致了,那你精简的路线可以从如下两点入手:
1.选更小的系统包(实际上价值不高,比如你有几十个rpm包要装,换系统到Ubuntu那肯定是个二逼决定,因为不支持rpm啊,你[……]
Monthly Archives: December 2018
new elasticsearch package pre-installation script subprocess returned error exit status 1解决方法
我碰到”new elasticsearch package pre-installation script subprocess returned error exit status 1″报错的情况是,用了Ubuntu的Docker镜像,在其中安装Elasticsea[……]
rpm转deb方法
Debian或者Ubuntu有的时候找不到deb的安装包,但是有rpm的,转换下其实也是可以用的,方法如下:
apt-get install alien
alien 1.rpm 1.deb generated
相反,deb转rpm可以这样:
alien -r 1.de[......]
Ubuntu Dockerfile source: not found解决办法
Linux Shell cat EOF 变量引用
cat输出多行文本到文件的方法很常用,如何在里面引用变量呢?看下面的代码:
设置环境变量TEST。
export TEST="test"
test.sh文件内容如下:
#!/bin/bash
cat <<EOF > /test.y[......]
Could not find or load main class org.apache.flume.node.Application解决方案
遇到报错:Could not find or load main class org.apache.flume.node.Application
通常都是没有设置flume的路径造成的,解决方案如下:
echo -e "export FLUME_HOME=[......]
oracle-instantclient18.3-basic-18.3相关rpm包下载
以下是oracle-instantclient18.3-basic-18.3相关的basic、devel、sqlplus的rpm包下载链接:
oracle-instantclient18.3-basic-18.3.0.0.0-1.x86_64.rpm
oracle[……]
Docker Centos7 Failed to get D-Bus connection 解决方案
通常,碰到Failed to get D-Bus connection是使用了systemctl的指令启动服务后报错的。
解决办法也很简单,容器启动的命令行加入(这参数权限比较高,并不太推荐使用,这里只说个方法)。
--privileged
然后启动的命令行里,将[……]
/usr/lib64/php/modules/pdo_oci.so (libclntsh.so.18.1: cannot open shared object file: No such file or directory)解决方案
出现报错:
/usr/lib64/php/modules/pdo_oci.so (libclntsh.so.18.1: cannot open shared object file: No such file or directory)
八成是装oracle-ins[……]