node3.yml 1.3 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
version: '3.7'

services: 
  td2.0-node3:
     build:
       context: .
       args:
         - PACKAGE=${PACKAGE}
         - EXTRACTDIR=${DIR}
     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:
      - "tdnode1:172.27.0.7"
      - "tdnode2:172.27.0.8"
      - "tdnode4:172.27.0.10"
      - "tdnode5:172.27.0.11"
     volumes: 
       # bind data directory
       - type: bind
         source: /data/node3/data
         target: /var/lib/taos
       # bind log directory
       - type: bind
         source: /data/node3/log
         target: /var/log/taos
       # bind configuration
       - type: bind
         source: /data/node3/cfg
         target: /etc/taos
       # bind core dump path 
       - type: bind
         source: /data/node3/core
         target: /coredump
       - type: bind
         source: /data
         target: /root
     hostname: tdnode3
     networks:
         taos_update_net:
             ipv4_address: 172.27.0.9
     command: taosd