services: oss-mgr: image: registry.cn-chengdu.aliyuncs.com/tnb028/oss-mgr container_name: oss-mgr restart: always network_mode: host environment: - SPRING_DATASOURCE_URL=jdbc:mysql://127.0.0.1/tnb_oss_tdb?allowPublicKeyRetrieval=true&useSSL=false&useUnicode=true&characterEncoding=UTF-8&serverTimezone=GMT%2b8 - SPRING_DATASOURCE_USERNAME=test - SPRING_DATASOURCE_PASSWORD=Test_123456 volumes: - /etc/localtime:/etc/localtime:ro deploy: resources: limits: cpus: '2.0' # 限制使用 2 个 CPU 核心 memory: 2GB # 容器内存上限 reservations: memory: 1GB # 预留最少 1GB 内存 logging: driver: "json-file" options: max-size: "10m" # 每个日志文件最大 10MB max-file: "1" # 最多保留 1 个旧日志文件