|
@@ -1,32 +1,7 @@
|
|
|
-FROM centos:centos6.7
|
|
|
+FROM canal/osbase:v1
|
|
|
|
|
|
MAINTAINER agapple (jianghang115@gmail.com)
|
|
|
|
|
|
-# install system
|
|
|
-RUN \
|
|
|
- /bin/cp -f /usr/share/zoneinfo/Asia/Shanghai /etc/localtime && \
|
|
|
- echo 'root:Hello1234' | chpasswd && \
|
|
|
- groupadd -r admin && useradd -g admin admin && \
|
|
|
- yum install -y man && \
|
|
|
- yum install -y dstat && \
|
|
|
- yum install -y unzip && \
|
|
|
- yum install -y nc && \
|
|
|
- yum install -y openssh-server && \
|
|
|
- yum install -y tar && \
|
|
|
- yum install -y which && \
|
|
|
- yum install -y wget && \
|
|
|
- yum install -y perl && \
|
|
|
- yum install -y file && \
|
|
|
- ssh-keygen -q -N "" -t dsa -f /etc/ssh/ssh_host_dsa_key && \
|
|
|
- ssh-keygen -q -N "" -t rsa -f /etc/ssh/ssh_host_rsa_key && \
|
|
|
- sed -ri 's/session required pam_loginuid.so/#session required pam_loginuid.so/g' /etc/pam.d/sshd && \
|
|
|
- sed -i -e 's/^#Port 22$/Port 2222/' /etc/ssh/sshd_config && \
|
|
|
- mkdir -p /root/.ssh && chown root.root /root && chmod 700 /root/.ssh && \
|
|
|
- yum install -y cronie && \
|
|
|
- sed -i '/session required pam_loginuid.so/d' /etc/pam.d/crond && \
|
|
|
- yum clean all && \
|
|
|
- true
|
|
|
-
|
|
|
# install canal
|
|
|
COPY image/ /tmp/docker/
|
|
|
COPY canal.deployer-*.tar.gz /home/admin/
|
|
@@ -39,14 +14,6 @@ RUN \
|
|
|
cp -R /tmp/docker/admin/* /home/admin/ && \
|
|
|
/bin/cp -f alidata/bin/lark-wait /usr/bin/lark-wait && \
|
|
|
|
|
|
- touch /var/lib/rpm/* && \
|
|
|
- yum -y install /tmp/jdk-8-linux-x64.rpm && \
|
|
|
- /bin/rm -f /tmp/jdk-8-linux-x64.rpm && \
|
|
|
-
|
|
|
- echo "export JAVA_HOME=/usr/java/latest" >> /etc/profile && \
|
|
|
- echo "export PATH=\$JAVA_HOME/bin:\$PATH" >> /etc/profile && \
|
|
|
- /bin/mv /home/admin/bin/clean_log /etc/cron.d && \
|
|
|
-
|
|
|
mkdir -p /home/admin/canal-server && \
|
|
|
tar -xzvf /home/admin/canal.deployer-*.tar.gz -C /home/admin/canal-server && \
|
|
|
/bin/rm -f /home/admin/canal.deployer-*.tar.gz && \
|