安装
Github地址:https://github.com/iiiiiii1/Docker-PyOne
1、安装Docker
#CentOS 6
rpm -iUvh http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm
yum update -y
yum -y install docker-io
service docker start
chkconfig docker on
#CentOS 7、Debian、Ubuntu
curl -sSL https://get.docker.com/ | sh
systemctl start docker
systemctl enable docker.service
2、安装PyOne
#拉取Dockerfile相关文件
git clone https://github.com/iiiiiii1/Docker-PyOne.git
#进入文件夹下载Pyone源码
cd Docker-PyOne
git clone https://github.com/abbeyokgo/PyOne.git
如果你要修改PyOne
后台密码和增加更多的网盘,可以提前编辑config.py.sample
,不修改就默认。也可以修改下Aria2
配置文件,与路径有关的参数别改,密匙什么的都可以改,不改的话默认moerats
。
#构建镜像
docker build -t moerats/pyone .
#启动镜像
docker run -d -p 34567:34567 --name pyone moerats/pyone:latest
最后访问ip:34567
即可,后台路径/admin
,密码PyOne
,直接参考后面的域名访问即可。
#这里也可以通过重启镜像来重启PyOne程序
#启动镜像
docker start pyone
#重启镜像
docker restart pyone
好了,镜像使用包括离线下载暂时测试正常,不过还是建议手动安装,Docker
体验稍差。