智慧保安后台管理-外网
Administrator
2022-05-14 551fed423efcef4c1cea7fc6bd8f625a7dea85a2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
version: '3.1'
services:
  zhbaw:
    # 从 Harbor 私有仓库拉取镜像
#    image: 192.168.0.191/zhbaw/zhbaw:SNAPSHOT-$BUILD_NUMBER
    image: zhbaw:latest
    container_name: zhbaw
    ports:
      - "81:81"
    # 容器停止后会重启
    restart: always
    depends_on:
      - redis
  redis:
    image: "redis:alpine"
    container_name: redis-zhbaw
    ports:
      - "6381:6379"
    restart: always