智慧保安后台管理-外网项目备份
钟日健
2026-06-01 62eb499b0c969f246d3245d1429a97da4de1ce28
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
version: '3.1'
services:
  zhbaw:
    # 从 Harbor 私有仓库拉取镜像
#    image: 192.168.0.191/zhbaw/zhbaw:SNAPSHOT-$BUILD_NUMBER
    image: zhbaw:latest
    container_name: zhbaw
#    deploy:
#      replicas: 1
#      update_config:
#        parallelism: 2
#        delay: 30s
#    depends_on:
#      - redis
    ports:
      - "81:81"
    volumes:
      - /home/zhongsong/anbao:/home/zhbaw/anbao
    # 容器停止后会重启
    restart: always
#  redis:
#    image: "redis:alpine"
#    container_name: reids-alpine
#    deploy:
#      replicas: 1
#    ports:
#      - "6379:6379"
#    restart: always