1 Star 0 Fork 2

gordonhwangyong/docker-baota

forked from jundayw/docker-baota 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Dockerfile 1011 Bytes
一键复制 编辑 原始数据 按行查看 历史
jundayw 提交于 2020-05-08 22:30 . clear
FROM centos:7
MAINTAINER pch18.cn
#设置entrypoint和letsencrypt映射到www文件夹下持久化
COPY entrypoint.sh /entrypoint.sh
COPY set_default.py /set_default.py
RUN mkdir -p /www/letsencrypt \
&& ln -s /www/letsencrypt /etc/letsencrypt \
&& rm -f /etc/init.d \
&& mkdir /www/init.d \
&& ln -s /www/init.d /etc/init.d \
&& chmod +x /entrypoint.sh \
&& mkdir /www/wwwroot
#更新系统 安装依赖 安装宝塔面板
RUN cd /home \
&& yum -y update \
&& yum -y install wget openssh-server \
&& echo 'Port 63322' > /etc/ssh/sshd_config \
&& wget -O install.sh http://download.bt.cn/install/install_6.0.sh \
&& echo y | bash install.sh \
&& python /set_default.py \
&& echo '["linuxsys", "webssh"]' > /www/server/panel/config/index.json \
&& yum clean all
WORKDIR /www/wwwroot
CMD /entrypoint.sh
EXPOSE 8888 888 21 20 443 80
HEALTHCHECK --interval=5s --timeout=3s CMD curl -fs http://localhost:8888/ && curl -fs http://localhost/ || exit 1
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/gordonhwangyong/docker-baota.git
[email protected]:gordonhwangyong/docker-baota.git
gordonhwangyong
docker-baota
docker-baota
master

搜索帮助