docker-compse安装seafile网盘

cat > docker-compose.yaml << eof

version: '2.0'
services:
  db:
    restart: unless-stopped
    image: mariadb:10.5
    container_name: seafile-mysql
    environment:
      - MYSQL_ROOT_PASSWORD=admin  # 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:
    restart: unless-stopped
    image: memcached:1.5.6
    container_name: seafile-memcached
    entrypoint: memcached -m 256
    networks:
      - seafile-net

  seafile:
    restart: always
    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=admin  # 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=admin@qq.com # Specifies Seafile admin user, default is 'me@example.com'.
      - SEAFILE_ADMIN_PASSWORD=admin     # Specifies Seafile admin password, default is 'asecret'.
      - SEAFILE_SERVER_LETSENCRYPT=false   # Whether use letsencrypt to generate cert.
      - SEAFILE_SERVER_HOSTNAME=192.168.0.102  # Specifies your host name.
    depends_on:
      - db
      - memcached
      - onlyoffice
    networks:
      - seafile-net
  onlyoffice:
    image: onlyoffice/documentserver:7.1  ## 注意onlyoffice版本,7.2版本会遇到认证异常问题
    container_name: onlyoffice
    restart: unless-stopped
    ports:
      - '8080:80'
    volumes:
      - './onlyoffice/DocumentServer/logs:/var/log/onlyoffice'
      - './onlyoffice/DocumentServer/data:/var/www/onlyoffice/Data'
      - './onlyoffice/DocumentServer/lib:/var/lib/onlyoffice'
      - './onlyoffice/DocumentServer/db:/var/lib/postgresql'
      - './onlyoffice/DocumentServer/documentserver:/etc/onlyoffice/documentserver'
    networks:
      - seafile-net
networks:
  seafile-net:

eof

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值