安装docker
curl -fsSL https://get.docker.com -o get-docker.sh
sh get-docker.sh
# 设置开机自启
systemctl enable docker
# 建议切换镜像源,在 /etc/docker/daemon.json (没有则新建)下加入
#{
# "registry-mirrors": ["https://registry.docker-cn.com"]
#}
# 切换后记得重新停启用 docker 服务
安装 compose
yum install docker-compose -y
# 或参照文档安装
# https://docs.docker.com/compose/install/
参照配置进行
#以下为 docker-compose.yml 可适当修改其中的配置
version: '2.0'
services:
db:
image: mariadb:10.1
container_name: seafile-mysql
environment:
- MYSQL_ROOT_PASSWORD=db_dev # Requested, set the root's password of MySQL service.
- MYSQL_LOG_CONSOLE=true
volumes:
- /opt/seafile-mysql/db:/var/lib/mysql # Requested, specifies the path to MySQL data persistent store.
networks:
- seafile-net
memcached:
image: memcached:1.5.6
container_name: seafile-memcached
entrypoint: memcached -m 256
networks:
- seafile-net
seafile:
image: seafileltd/seafile-mc:latest
container_name: seafile
ports:
- "80:80" # 注意内部端口不需要更改
# - "443:443" # If https is enabled, cancel the comment.
volumes:
- /opt/seafile-data:/shared # Requested, specifies the path to Seafile data persistent store.
environment:
- DB_HOST=db
- DB_ROOT_PASSWD=db_dev # 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
docker-compose up -d
垃圾回收
docker exec seafile /scripts/gc.sh # 建议定时进行
我是一个小白,很感谢博主分享的这篇博客,想问一下,因为我的vps已经有一个页面了,如果我想通过其他端口设置 和访问我的seafile,比如输入xx.xx.com:8001。 请问应该怎么设置呢?
已经重新写了一篇,希望对你有帮助。https://www.jeeinn.com/2020/03/1238/