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

services: 
  td2.0-node3:
     build:
       context: .
       args:
         - PACKAGE=${PACKAGE}
         - EXTRACTDIR=${DIR}
P
Ping Xiao 已提交
10
         - DATADIR=${DATADIR}
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
     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:
      - "tdnode2:172.27.0.8"
28
      - "tdnode3:172.27.0.9"
29 30
      - "tdnode4:172.27.0.10"
      - "tdnode5:172.27.0.11"
31 32 33 34 35
      - "tdnode6:172.27.0.12"
      - "tdnode7:172.27.0.13"
      - "tdnode8:172.27.0.14"
      - "tdnode9:172.27.0.15"
      - "tdnode9:172.27.0.16"
36 37 38
     volumes: 
       # bind data directory
       - type: bind
P
Ping Xiao 已提交
39
         source: ${DATADIR}/node3/data
40 41 42
         target: /var/lib/taos
       # bind log directory
       - type: bind
P
Ping Xiao 已提交
43
         source: ${DATADIR}/node3/log
44 45 46
         target: /var/log/taos
       # bind configuration
       - type: bind
P
Ping Xiao 已提交
47
         source: ${DATADIR}/node3/cfg
48 49 50
         target: /etc/taos
       # bind core dump path 
       - type: bind
P
Ping Xiao 已提交
51
         source: ${DATADIR}/node3/core
52 53
         target: /coredump
       - type: bind
P
Ping Xiao 已提交
54
         source: ${DATADIR}
55 56 57 58 59 60
         target: /root
     hostname: tdnode3
     networks:
         taos_update_net:
             ipv4_address: 172.27.0.9
     command: taosd