node5.yml 1.6 KB
Newer Older
P
Ping Xiao 已提交
1 2 3 4 5 6 7 8
version: '3.7'

services: 
  td2.0-node5:
     build:
       context: .
       args:
         - PACKAGE=${PACKAGE}
L
liuyq-617 已提交
9
         - TARBITRATORPKG=${TARBITRATORPKG}
P
Ping Xiao 已提交
10
         - EXTRACTDIR=${DIR}
L
liuyq-617 已提交
11
         - EXTRACTDIR2=${DIR2}
P
Ping Xiao 已提交
12
         - DATADIR=${DATADIR}
13
     image: 'tdengine:${VERSION}'
14
     container_name: 'tdnode5'     
P
Ping Xiao 已提交
15 16 17 18 19 20 21 22 23
     cap_add:
       - ALL
     stdin_open: true
     tty: true
     environment:
       TZ: "Asia/Shanghai"
     command: >
       sh -c "ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && 
       echo $TZ > /etc/timezone &&
24 25 26
       mkdir /coredump &&
       echo 'kernel.core_pattern=/coredump/core_%e_%p' >> /etc/sysctl.conf &&
       sysctl -p &&
P
Ping Xiao 已提交
27
       exec my-main-application"
28 29 30 31 32
     extra_hosts:
      - "tdnode2:172.27.0.8"
      - "tdnode3:172.27.0.9"
      - "tdnode4:172.27.0.10"
      - "tdnode5:172.27.0.11"
33 34 35 36
      - "tdnode6:172.27.0.12"
      - "tdnode7:172.27.0.13"
      - "tdnode8:172.27.0.14"
      - "tdnode9:172.27.0.15"
L
liuyq-617 已提交
37
      - "tdnode10:172.27.0.16"
P
Ping Xiao 已提交
38 39 40
     volumes: 
       # bind data directory
       - type: bind
P
Ping Xiao 已提交
41
         source: ${DATADIR}/node5/data
P
Ping Xiao 已提交
42 43 44
         target: /var/lib/taos
       # bind log directory
       - type: bind
P
Ping Xiao 已提交
45
         source: ${DATADIR}/node5/log
P
Ping Xiao 已提交
46 47 48
         target: /var/log/taos
       # bind configuration
       - type: bind
P
Ping Xiao 已提交
49
         source: ${DATADIR}/node5/cfg
P
Ping Xiao 已提交
50
         target: /etc/taos
51 52
       # bind core dump path
       - type: bind
P
Ping Xiao 已提交
53
         source: ${DATADIR}/node5/core
54
         target: /coredump
P
Ping Xiao 已提交
55
       - type: bind
P
Ping Xiao 已提交
56
         source: ${DATADIR}
57 58
         target: /root
     hostname: tdnode5     
P
Ping Xiao 已提交
59 60 61 62
     networks:
         taos_update_net:
             ipv4_address: 172.27.0.11
     command: taosd