node4.yml 1.1 KB
Newer Older
P
Ping Xiao 已提交
1 2 3 4 5 6 7 8 9 10
version: '3.7'

services: 
  td2.0-node4:
     build:
       context: .
       args:
         - PACKAGE=${PACKAGE}
         - EXTRACTDIR=${DIR}
     image: 'tdengine:2.0.13.1'
11
     container_name: 'tdnode4'     
P
Ping Xiao 已提交
12 13 14 15 16 17 18 19
     cap_add:
       - ALL
     stdin_open: true
     tty: true
     environment:
       TZ: "Asia/Shanghai"
     command: >
       sh -c "ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && 
20
       echo $TZ > /etc/timezone &&      
P
Ping Xiao 已提交
21 22 23 24 25 26 27 28 29 30 31 32 33 34
       exec my-main-application"
     volumes: 
       # bind data directory
       - type: bind
         source: /data/node4/data
         target: /var/lib/taos
       # bind log directory
       - type: bind
         source: /data/node4/log
         target: /var/log/taos
       # bind configuration
       - type: bind
         source: /data/node4/cfg
         target: /etc/taos
35 36 37 38
       # bind core dump path
       - type: bind
         source: /data/node2/core
         target: /coredump
P
Ping Xiao 已提交
39 40
       - type: bind
         source: /data
41 42
         target: /root  
     hostname: tdnode4
P
Ping Xiao 已提交
43 44 45 46
     networks:
         taos_update_net:
             ipv4_address: 172.27.0.10
     command: taosd