...
在 seafiel.yml 增加 sdoc 配置
代码块 |
---|
sdoc-server: image: seafileltd/sdoc-server:latest container_name: sdoc-server ports: - 7070:7070 - 8888:8888 volumes: - /data/seafile/seadoc-data/:/shared environment: - DB_HOST=db - DB_PORT=3306 - DB_USER=seafile - DB_PASSWD=29329XXX-bac6-XXXX - DB_NAME=sdoc_db - TIME_ZONE=Asia/Shanghai # Optional, default is UTC. Should be uncomment and set to your local time zone. - SDOC_SERVER_LETSENCRYPT=false # Whether to use https or not. - SDOC_SERVER_HOSTNAME=192.168.182.53 # Specifies your host name if https is enabled. - SEAHUB_SERVICE_URL=http://192.168.182.53:8003 networks: - seafile-net |
启动 SeaDoc
代码块 |
---|
docker compose -f seafile.yml down docker compose -f seafile.yml up |
...