docker-compose.yml 3.2 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}
P
Ping Xiao 已提交
12
         - DATADIR=${DATADIR}
13
     image: 'tdengine:${VERSION}'
14
     container_name: 'tdnode1'     
P
Ping Xiao 已提交
15 16 17 18 19 20 21 22 23
     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 &&
24 25 26
       mkdir /coredump &&
       echo 'kernel.core_pattern=/coredump/core_%e_%p' >> /etc/sysctl.conf &&
       sysctl -p &&
P
Ping Xiao 已提交
27
       exec my-main-application"
28 29 30 31 32
     extra_hosts:
      - "tdnode2:172.27.0.8"
      - "tdnode3:172.27.0.9"
      - "tdnode4:172.27.0.10"
      - "tdnode5:172.27.0.11"
33 34 35 36
      - "tdnode6:172.27.0.12"
      - "tdnode7:172.27.0.13"
      - "tdnode8:172.27.0.14"
      - "tdnode9:172.27.0.15"
L
liuyq-617 已提交
37
      - "tdnode10:172.27.0.16"
P
Ping Xiao 已提交
38 39 40
     volumes: 
       # bind data directory
       - type: bind
P
Ping Xiao 已提交
41
         source: ${DATADIR}/node1/data
P
Ping Xiao 已提交
42 43 44
         target: /var/lib/taos
       # bind log directory
       - type: bind
P
Ping Xiao 已提交
45
         source: ${DATADIR}/node1/log
P
Ping Xiao 已提交
46 47 48
         target: /var/log/taos
       # bind configuration
       - type: bind
P
Ping Xiao 已提交
49
         source: ${DATADIR}/node1/cfg
P
Ping Xiao 已提交
50
         target: /etc/taos
51 52
       # bind core dump path
       - type: bind
P
Ping Xiao 已提交
53
         source: ${DATADIR}/node1/core
54
         target: /coredump
P
Ping Xiao 已提交
55 56
       - type: bind
         source: /data
57
         target: /root
58
     hostname: tdnode1
P
Ping Xiao 已提交
59 60 61
     networks:
         taos_update_net:
             ipv4_address: 172.27.0.7
62
     command: taosd        
P
Ping Xiao 已提交
63 64 65 66 67 68

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


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