请问最新社区版怎么对接外部数据库

我修改下面的不起作用啊。请求发个dockercompose的部署配置

services:
memcached:
image: memcached:1.6.18
container_name: seafile-memcached
entrypoint: memcached -m 128
networks:
- seafile-net
deploy:
restart_policy:
condition: on-failure
resources:
limits:
cpus: ‘0.1’
memory: 256M
healthcheck:
test: [“CMD”, “nc”, “-z”, “localhost”, “11211”]
interval: 10s
timeout: 5s
retries: 5
seafile:
image: seafileltd/seafile-mc:12.0-latest
container_name: seafile
ports:
- “127.0.0.1:8077:80”
volumes:
- “/mtn/500/sea/seafile-data:/shared”
environment:
- DB_HOST= 127.0.0.1
- DB_PORT=3306
- DB_ROOT_USER=root
# - DB_USER=root
- DB_ROOT_PASSWD=985555344hh
- TIME_ZONE=Asia/Shanghai
- SEAFILE_ADMIN_EMAIL=admin@admin.com
- SEAFILE_ADMIN_PASSWORD=9444392
- SEAFILE_SERVER_HOSTNAME=example.seafile.com
- SEAFILE_SERVER_LETSENCRYPT=false
- FORCE_HTTPS_IN_CONF=false
- JWT_PRIVATE_KEY=4gas44777vffhfjj38t7a3et4a6
depends_on:
- memcached
networks:
- seafile-net
deploy:
restart_policy:
condition: on-failure
resources:
limits:
cpus: ‘0.6’
memory: 1024M
healthcheck:
test: [“CMD”, “curl”, “-f”, “ht=tp://localhost:80/ping”]
interval: 30s
timeout: 10s
retries: 3
networks:
seafile-net:
driver: bridge

seafile部署时,修改.env文件中配置;如果seafile已经部署,则需要修改conf目录下的数据库相关配置。