Created
March 5, 2017 06:31
-
-
Save jaswinder97/8b518703c649d3a799140600a6d16e6a to your computer and use it in GitHub Desktop.
Docker File for kloxo-mr panel on CentOS
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM centos:centos6 | |
MAINTAINER Name <[email protected]> | |
RUN yum -y install wget | |
RUN yum install yum-priorities vim-minimal subversion curl zip unzip -y | |
RUN cd /tmp && \ | |
wget https://github.com/mustafaramadhan/kloxo/raw/rpms/release/neutral/noarch/mratwork-release-0.0.1-1.noarch.rpm --no-check-certificate && \ | |
rpm -ivh mratwork-release-0.0.1-1.noarch.rpm | |
RUN cd / && \ | |
yum clean all && \ | |
yum update mratwork-* -y && \ | |
yum install kloxomr7 -y | |
EXPOSE 10-8000 | |
ENTRYPOINT sh /script/upcp |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
wtf