docker-compose.yml 2.9 KB
Newer Older
P
Ping Xiao 已提交
1 2 3
version: '3.7'

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

  td2.0-node2:
     build:
       context: .
       args:
         - PACKAGE=${PACKAGE}
         - EXTRACTDIR=${DIR}
64
     image: 'tdengine:${VERSION}'
65
     container_name: 'tdnode2'     
P
Ping Xiao 已提交
66 67 68 69 70 71 72 73 74
     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 &&
75 76 77
       mkdir /coredump &&
       echo 'kernel.core_pattern=/coredump/core_%e_%p' >> /etc/sysctl.conf &&
       sysctl -p &&
P
Ping Xiao 已提交
78
       exec my-main-application"
79 80 81 82 83
     extra_hosts:
      - "tdnode1:172.27.0.7"
      - "tdnode3:172.27.0.9"
      - "tdnode4:172.27.0.10"
      - "tdnode5:172.27.0.11"
P
Ping Xiao 已提交
84 85 86 87 88 89 90 91 92 93 94 95 96
     volumes: 
       # bind data directory
       - type: bind
         source: /data/node2/data
         target: /var/lib/taos
       # bind log directory
       - type: bind
         source: /data/node2/log
         target: /var/log/taos
       # bind configuration
       - type: bind
         source: /data/node2/cfg
         target: /etc/taos
97
       # bind core dump path 
98 99
       - type: bind
         source: /data/node2/core
100
         target: /coredump      
P
Ping Xiao 已提交
101 102 103
       - type: bind
         source: /data
         target: /root
104
     hostname: tdnode2
P
Ping Xiao 已提交
105 106 107
     networks:
         taos_update_net:
             ipv4_address: 172.27.0.8
108
     command: taosd
P
Ping Xiao 已提交
109 110 111 112 113 114 115 116 117


networks:
  taos_update_net:
#    external: true
     ipam:
       driver: default
       config:
         - subnet: "172.27.0.0/24"