归档文章 (2011-2017)
date
2016/07/29
基于
Ubuntu 16.04
构建的 Docker
镜像,一键自动安装最新版的 Seafile
,并自动完成设置,使用外部MySQL
数据库,支持 Nginx SSL
访问,默认开启 WebDAV
功能。了解更多信息,请访问Seafile
官网。https://www.seafile.com演示地址:https://cloud.wangyan.org 账号:info@wangyan.org 密码:123456
https://img.cdn.wangyan.cloud/d/docker-seafile.jpg
一、安装 Docker
关于Docker 更多信息,请访问其官网。https://docs.docker.com
debian
apt-get update && \ apt-get -y install curl && \ curl -fsSL https://get.daocloud.io/docker | sh \ update-rc.d -f docker defaults && \ service docker start
CentOS
yum update && \ curl -fsSL https://get.docker.com/ | sh && \ systemctl enable docker.service && \ systemctl start docker.service
二、安装 MySQL 数据库
如果你想使用内置的数据库,请忽略步骤(二)(三)(四),直接跳到步骤(五)
注意将123456换成你的MySQL Root密码
docker run --name mysql \ -v /var/lib/mysql:/var/lib/mysql \ -e MYSQL_ROOT_PASSWORD=123456 \ -p 3306:3306 \ -d mysql:latest
三、安装 phpMyAdmin (可选)
温馨提示:国内主机请将 idiswy/phpmyadmin:latest 换成 docker.wangyan.org/root/docker-phpmyadmin:latest
docker run --name phpmyadmin \ --link mysql:mysql \ -p 8080:80 \ -P -d idiswy/phpmyadmin:latest
四、安装 Seafile (外部数据库)
IP_OR_DOMAIN
服务器IP或者域名
SEAFILE_ADMIN
创建 Seafile 管理员账号
SEAFILE_ADMIN_PW
Seafile 管理员密码
SQLSEAFILEPW
Seafile 数据库密码
注意:如果有防火墙,请务必开放8082端口,用于客户端同步。 国内主机请将 idiswy/seafile:latest 换成 docker.wangyan.org/root/docker-seafile:latest 国内主机可增加-e APT_MIRRORS=aliyun 选项,使用国内的镜像源。
docker run --name seafile \ --link mysql:mysql \ -p 8082:8082 \ -p 80:80 \ -p 443:443 \ -e IP_OR_DOMAIN=cloud.wangyan.org \ -e SEAFILE_ADMIN=info@wangyan.org \ -e SEAFILE_ADMIN_PW=123456 \ -e SQLSEAFILEPW=123456 \ -v /home/seafile:/opt/seafile \ -d idiswy/seafile
安装可能需要 1 分钟左右,通过下面方法查看安装进度。
docker logs -f seafile //查看安装进度
五、安装 Seafile (内置数据库)
如果你想使用外部数据库,请返回到步骤(二)安装
MYSQL_ROOT_PASSWORD
MySQL Root 密码
IP_OR_DOMAIN
服务器IP或者域名
SEAFILE_ADMIN
创建 Seafile 管理员账号
SEAFILE_ADMIN_PW
Seafile 管理员密码
SQLSEAFILEPW
Seafile 数据库密码
注意:如果有防火墙,请务必开放8082端口,用于客户端同步。 国内主机请将 idiswy/seafile:latest 换成 docker.wangyan.org/root/docker-seafile:latest 国内主机可增加-e APT_MIRRORS=aliyun 选项,使用国内的镜像源。
docker run --name seafile \ -p 8082:8082 \ -p 80:80 \ -p 443:443 \ -e MYSQL_ROOT_PASSWORD=123456 \ -e IP_OR_DOMAIN=cloud.wangyan.org \ -e SEAFILE_ADMIN=info@wangyan.org \ -e SEAFILE_ADMIN_PW=123456 \ -e SQLSEAFILEPW=123456 \ -v /home/seafile:/opt/seafile \ -d idiswy/seafile
安装可能需要 5 分钟左右,通过下面方法查看安装进度。
docker logs -f seafile //查看安装进度
六、常见操作
6.1 进入容器
首先,安装个小工具
curl --fail -L -O https://github.com/phusion/baseimage-docker/archive/master.tar.gz && \ tar xzf master.tar.gz && \ ./baseimage-docker-master/install-tools.sh
然后,进入容器
docker-bash seafile
配置文件路径
nginx 配置文件
/etc/nginx/conf.d/seafile.conf
seafile 配置文件
/opt/seafile/conf/
6.2 重启操作
重启 nginx(nginx 修改配置文件后,需要重启)
sv reload nginx
重启 seafile
/etc/init.d/seafile restart
七、系统设置(可选)
6.1. 解决Debian本地化问题
apt-get update && apt-get install -y language-pack-zh-hans-base
cat >/etc/default/locale<<-EOF LANG=zh_CN.UTF-8 LANGUAGE=zh_CN.UTF-8 LC_ALL=zh_CN.UTF-8 EOF
locale-gen "zh_CN.UTF-8" && dpkg-reconfigure locales
7.2.设置中国时区
Debbian
rm -rf /etc/localtime && \ ln -s /usr/share/zoneinfo/Asia/Shanghai /etc/localtime && \ echo "Asia/Shanghai" > /etc/timezone && \ apt-get -y install ntpdate && ntpdate -d cn.pool.ntp.org
CentOS 7
imedatectl set-timezone Asia/Shanghai timedatectl set-ntp yes
7.3.安装 FUSE 扩展
mkdir -p /data/seafile-fuse && \ /opt/seafile/seafile-server-latest/seaf-fuse.sh start /data/seafile-fuse //启动 ./seaf-fuse.sh stop //停止
八、了解更多
关于
Seafile
更多信息,请访问其官网。http://manual.seafile.com/更多使用帮助请阅读
wiki
,其他问题欢迎在issues
中反馈。