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

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