添加minio的启动

This commit is contained in:
孙小云 2026-01-26 16:19:12 +08:00
parent e295ad945b
commit dc662276c2
2 changed files with 0 additions and 43 deletions

View File

@ -44,10 +44,6 @@ infrastructure:
docker_service: ruoyi-nacos docker_service: ruoyi-nacos
wait_time: 20 # Nacos 需要等待 MySQL 就绪 wait_time: 20 # Nacos 需要等待 MySQL 就绪
- name: thingsboard-postgres
docker_service: thingsboard-postgres
wait_time: 20 # PostgreSQL 需要时间初始化
- name: zlmediakit - name: zlmediakit
docker_service: zlmediakit docker_service: zlmediakit
wait_time: 10 # 流媒体服务器启动较快 wait_time: 10 # 流媒体服务器启动较快
@ -66,10 +62,6 @@ infrastructure:
- cp -r wvpweb/dist docker/wvp/web/html/dist - cp -r wvpweb/dist docker/wvp/web/html/dist
wait_time: 10 # Nginx 启动较快 wait_time: 10 # Nginx 启动较快
- name: thingsboard-ce
docker_service: thingsboard-ce
wait_time: 40 # ThingsBoard 需要等待 PostgreSQL 并初始化
# Git 仓库配置 # Git 仓库配置
repositories: repositories:
# 认证服务 # 认证服务

View File

@ -381,38 +381,3 @@ services:
- wvp-pro - wvp-pro
links: links:
- wvp-pro - wvp-pro
thingsboard-postgres:
container_name: thingsboard-postgres
image: registry.t-aaron.com/postgres:16
restart: always
environment:
- TZ=Asia/Shanghai
- POSTGRES_DB=thingsboard
- POSTGRES_PASSWORD=postgres
ports:
- "5432:5432"
volumes:
- ./thingsboard/postgres-data:/var/lib/postgresql/data
thingsboard-ce:
container_name: thingsboard-ce
image: registry.t-aaron.com/thingsboard/tb-node:4.2.1.1
restart: always
environment:
- TZ=Asia/Shanghai
- TB_SERVICE_ID=tb-ce-node
- SPRING_DATASOURCE_URL=jdbc:postgresql://thingsboard-postgres:5432/thingsboard
ports:
- "18081:8080"
- "7070:7070"
- "1883:1883"
- "8883:8883"
- "5683-5688:5683-5688/udp"
logging:
driver: "json-file"
options:
max-size: "100m"
max-file: "10"
depends_on:
- thingsboard-postgres
links:
- thingsboard-postgres