Seadoc error on startup

sdoc-server:
image: seafileltd/sdoc-server:latest
container_name: sdoc-server
ports:
#- 80:80
# - 443:443
- 7070:7070
- 8888:8888
volumes:
- /data/seadoc/:/shared
environment:
- DB_HOST=db
- DB_PORT=3306
- DB_USER=sdoc
- DB_PASSWD=xxxxxxxxxx # Requested, password of MySQL service.
- DB_NAME=sdoc_db
- TIME_ZONE=Europe/Moscow # 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= # Specifies your host name if https is enabled.
- SEAHUB_SERVICE_URL=https://server.domain.com
restart: unless-stopped
networks:
- seafile-net

1 Like