部署 Seafile 开源企业云盘

一、Seafile 介绍

Seafile 简介

:::info

官网:https://www.seafile.com/

GitHub:https://github.com/haiwen/seafile

:::

Seafile 是一款开源的企业云盘,注重可靠性和性能。

支持 Windows,Mac,Linux,iOS,Android 平台。

支持文件同步或者直接挂载到本地访问。

Seafile 特点

  1. 可靠的文件同步
  2. 挂载盘客户端
  3. 团队协作
  4. 高性能
  5. Wiki 与知识管理
  6. 适用于企业环境

二、检查宿主机系统版本

bash 复制代码
cat /etc/os-release

三、检查本地 Docker 环境

检查 Docker 服务状态

bash 复制代码
// 1) 低版本 Docker 安装
yum install docker -y

----
// < '推荐' >
// 2) 高版本 Docker 安装
curl -fsSL https://get.docker.com/ | sh

----
// 关闭防火墙
systemctl disable --now firewalld
setenforce 0

// 启用 Docker
systemctl enable --now docker

检查 Docker 配置信息

bash 复制代码
docker info

开启 IPv4 forwarding

bash 复制代码
[root@blog ~] echo "net.ipv4.ip_forward=1" >> /etc/sysctl.conf
[root@blog ~] systemctl restart network
[root@blog ~] sysctl net.ipv4.ip_forward
net.ipv4.ip_forward = 1

四、安装 Docker-compose

下载 Docker-compose 二进制包

bash 复制代码
curl -L https://github.com/docker/compose/releases/download/v2.2.2/docker-compose-linux-x86_64 -o /usr/local/bin/docker-compose

给文件增加执行权限

bash 复制代码
chmod +x /usr/local/bin/docker-compose

检查 Docker-compose 版本

bash 复制代码
docker-compose -v

五、安装 Seafile

编辑 Docker-compose.yaml 文件

bash 复制代码
mkdir /docker/seafile -p && cd /docker/seafile
bash 复制代码
[root@blog seafile] vim docker-compose.yaml 
version: '2.0'
services:
  db:
    image: mariadb:10.5
    container_name: seafile-mysql
    environment:
      - MYSQL_ROOT_PASSWORD=P@ssw0rd123456  # Requested, set the root's password of MySQL service.
      - MYSQL_LOG_CONSOLE=true
    volumes:
      - /docker/seafile/db:/var/lib/mysql  # Requested, specifies the path to MySQL data persistent store.
    networks:
      - seafile-net

  memcached:
    image: memcached:1.6
    container_name: seafile-memcached
    entrypoint: memcached -m 256
    networks:
      - seafile-net
          
  seafile:
    image: seafileltd/seafile-mc:latest
    container_name: seafile
    ports:
      - 8099:80
#      - "443:443"  # If https is enabled, cancel the comment.
    volumes:
      - /docker/seafile/data:/shared   # Requested, specifies the path to Seafile data persistent store.
    environment:
      - DB_HOST=db
      - DB_ROOT_PASSWD=P@ssw0rd123456  # Requested, the value shuold be root's password of MySQL service.
#      - TIME_ZONE=Asia/Shanghai # Optional, default is UTC. Should be uncomment and set to your local time zone.
      - SEAFILE_ADMIN_EMAIL=me@example.com # Specifies Seafile admin user, default is 'me@example.com'.
      - SEAFILE_ADMIN_PASSWORD=asecret     # Specifies Seafile admin password, default is 'asecret'.
      - SEAFILE_SERVER_LETSENCRYPT=false   # Whether use letsencrypt to generate cert.
      - SEAFILE_SERVER_HOSTNAME=seafile.example.com # Specifies your host name.
    depends_on:
      - db
      - memcached
    networks:
      - seafile-net

networks:
  seafile-net:

创建 Seafile

bash 复制代码
docker-compose up -d

查看容器状态

bash 复制代码
docker ps -a

查看 Seafile 容器日志

bash 复制代码
docker-compose logs -f

六、登录 Seafile

:::info

**如下信息:**可以在 docker-compose 文件中修改

:::

me@example.com

asecret

七、进入 Seafile 首页

八、Seafile 基本操作

进入系统管理后台

修改 Seafile 域名解析

此处必须修改,否则影响文件上传。

新建资料库

上传文件


大工告成~

相关推荐
行走在云端z4 小时前
mongodb 开源同步工具介绍
数据库·mongodb·开源
Codebee6 小时前
OneCode 3.0架构深度剖析:工程模块管理与自主UI系统的设计与实现
人工智能·开源·全栈
时光追逐者14 小时前
一款开源免费、通用的 WPF 主题控件包
开源·c#·.net·wpf
国服第二切图仔14 小时前
【源力觉醒 创作者计划】文心开源大模型ERNIE-4.5系列与Qwen/DeepSeek/GPT-4横向深度测评报告
百度·开源·文心大模型·paddle·gitcode
森焱森1 天前
60 美元玩转 Li-Fi —— 开源 OpenVLC 平台入门(附 BeagleBone Black 驱动简单解析)
c语言·单片机·算法·架构·开源
Albert_Lsk1 天前
【2025/07/11】GitHub 今日热门项目
人工智能·开源·github·开源协议
Codebee1 天前
注解驱动的知识中枢:MCPServer赋能AI业务的技术架构与实践
人工智能·架构·开源
时序数据说1 天前
时序数据库的存储之道:从数据特性看技术要点
大数据·数据库·物联网·开源·时序数据库·iotdb
ai小鬼头2 天前
AIStarter新版重磅来袭!永久订阅限时福利抢先看
人工智能·开源·github
春哥的研究所2 天前
可视化DIY小程序工具!开源拖拽式源码系统,自由搭建,完整的源代码包分享
小程序·开源·开源拖拽式源码系统·开源拖拽式源码·开源拖拽式系统