node3.yml 1.6 KB
Newer Older
1 2 3 4 5 6 7 8
version: '3.7'

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