Skip to content

Latest commit

 

History

History
47 lines (39 loc) · 1.15 KB

Dockerfile.md

File metadata and controls

47 lines (39 loc) · 1.15 KB

baota-paner 宝塔面板

此镜像是是基于centos,run起来,安装宝塔面板,commit成的镜像

run centos镜像

# 宿主机
docker run -i -t -d --privileged=true -p 20:20 -p 21:21 -p 80:80 -p 443:443 -p 888:888 -p 8888:8888 centos:7.2.1511

docker ps

docker exec -it XXXXX bash

安装宝塔面板

# 容器
yum install -y initscripts
# 安装宝塔
yum install -y wget && wget -O install.sh http://download.bt.cn/install/install.sh && sh install.sh

安装完了就可以看到账户名密码

Bt-Panel: http://221.224.11.234:8888
username: admin
password: 98617c88

停止宝塔服务,添加docker的启动脚本

service bt stop
chmod -R 766 /www
echo 'service bt start && sleep 10000000000000000000000000000000' > /bootstrap.sh
chmod +x /bootstrap.sh

commit成镜像

# 将面板的初始数据共享出来,启动的时候再挂载进去
docker cp XXX(containerId):/www .
docker commit XXX(containerId) baota:XXXXXX(password)

run container

docker run --rm -d -p 20:20 -p 21:21 -p 80:80 -p 443:443 -p 888:888 -p 8888:8888 -v $PWD/www:/www chenzhuoqi/baota:5.1-64b0dfc8 bash /bootstrap.sh