docker-compose.yml 3.4 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
     image: 'tdengine:${VERSION}'
12
     container_name: 'tdnode1'     
P
Ping Xiao 已提交
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
     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 &&
       exec my-main-application"
     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
36 37 38 39
       # bind core dump path
       - type: bind
         source: /data/node2/core
         target: /coredump
P
Ping Xiao 已提交
40 41
       - type: bind
         source: /data
42
         target: /root
43
     hostname: tdnode1   
P
Ping Xiao 已提交
44 45 46
     networks:
         taos_update_net:
             ipv4_address: 172.27.0.7
47
     command: taosd && tarbitrator
P
Ping Xiao 已提交
48 49 50 51 52 53 54

  td2.0-node2:
     build:
       context: .
       args:
         - PACKAGE=${PACKAGE}
         - EXTRACTDIR=${DIR}
55
     image: 'tdengine:${VERSION}'
56
     container_name: 'tdnode2'     
P
Ping Xiao 已提交
57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
     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 &&
       exec my-main-application"
     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
80 81 82 83 84
       # bind configuration
       - type: bind
         source: /data/node2/core
         target: /coredump
      # bind core dump path 
P
Ping Xiao 已提交
85 86 87
       - type: bind
         source: /data
         target: /root
88
     hostname: tdnode2
P
Ping Xiao 已提交
89 90 91
     networks:
         taos_update_net:
             ipv4_address: 172.27.0.8
92
     command: taosd
P
Ping Xiao 已提交
93 94 95 96 97 98 99

  td2.0-node3:
     build:
       context: .
       args:
         - PACKAGE=${PACKAGE}
         - EXTRACTDIR=${DIR}
100
     image: 'tdengine:${VERSION}'
101
     container_name: 'tdnode3'   
P
Ping Xiao 已提交
102 103 104 105 106 107 108 109
     cap_add:
       - ALL
     stdin_open: true
     tty: true
     environment:
       TZ: "Asia/Shanghai"
     command: >
       sh -c "ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && 
110
       echo $TZ > /etc/timezone &&       
P
Ping Xiao 已提交
111 112 113 114 115 116 117 118 119 120 121 122 123 124
       exec my-main-application"
     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
125
       # bind core dump path 
P
Ping Xiao 已提交
126 127
       - type: bind
         source: /data
128 129
         target: /root
     hostname: tdnode3
P
Ping Xiao 已提交
130 131 132
     networks:
         taos_update_net:
             ipv4_address: 172.27.0.9
133
     command: taosd
P
Ping Xiao 已提交
134 135 136 137 138 139 140 141

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