Skip to content

Commit bb67497

Browse files
authored
Fix docker version (#1007)
* fix docker version * remove wrong doc
1 parent 1aa2439 commit bb67497

File tree

16 files changed

+97
-97
lines changed

16 files changed

+97
-97
lines changed

src/UserGuide/Master/Table/Deployment-and-Maintenance/Docker-Deployment_apache.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -62,10 +62,10 @@ This section demonstrates how to deploy a standalone Docker version of 1C1D.
6262

6363
The Docker image of Apache IoTDB has been uploaded to https://hub.docker.com/r/apache/iotdb.
6464

65-
Taking obtaining version 1.3.2 as an example, pull the image command:
65+
Taking obtaining version 2.0.x as an example, pull the image command:
6666

6767
```bash
68-
docker pull apache/iotdb:1.3.2-standalone
68+
docker pull apache/iotdb:2.0.x-standalone
6969
```
7070

7171
View image:
@@ -241,10 +241,10 @@ echo "192.168.1.5 iotdb-3" >> /etc/hosts
241241

242242
The Docker image of Apache IoTDB has been uploaded tohttps://hub.docker.com/r/apache/iotdb。
243243

244-
Pull IoTDB images from three servers separately, taking version 1.3.2 as an example. The pull image command is:
244+
Pull IoTDB images from three servers separately, taking version 2.0.x as an example. The pull image command is:
245245

246246
```SQL
247-
docker pull apache/iotdb:1.3.2-standalone
247+
docker pull apache/iotdb:2.0.x-standalone
248248
```
249249

250250
View image:
@@ -275,7 +275,7 @@ On each server, create two YML files: `confignode.yml` and `datanode.yml`. Examp
275275
version: "3"
276276
services:
277277
iotdb-confignode:
278-
image: iotdb-enterprise:1.3.2.3-standalone #The image used
278+
image: iotdb-enterprise:2.0.x-standalone #The image used
279279
hostname: iotdb-1|iotdb-2|iotdb-3 #Choose from three options based on the actual situation
280280
container_name: iotdb-confignode
281281
command: ["bash", "-c", "entrypoint.sh confignode"]
@@ -310,7 +310,7 @@ services:
310310
version: "3"
311311
services:
312312
iotdb-datanode:
313-
image: iotdb-enterprise:1.3.2.3-standalone #The image used
313+
image: iotdb-enterprise:2.0.x-standalone #The image used
314314
hostname: iotdb-1|iotdb-2|iotdb-3 #Choose from three options based on the actual situation
315315
container_name: iotdb-datanode
316316
command: ["bash", "-c", "entrypoint.sh datanode"]

src/UserGuide/Master/Table/Deployment-and-Maintenance/Docker-Deployment_timecho.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -73,10 +73,10 @@ This section demonstrates how to deploy a standalone Docker version of 1C1D.
7373

7474
### 2.1 Load the Image File
7575

76-
For example, if the IoTDB container image file you obtained is named: `iotdb-enterprise-1.3.2.3-standalone-docker.tar.gz`, use the following command to load the image:
76+
For example, if the IoTDB container image file you obtained is named: `iotdb-enterprise-2.0.x.x-standalone-docker.tar.gz`, use the following command to load the image:
7777

7878
```Bash
79-
docker load -i iotdb-enterprise-1.3.2.3-standalone-docker.tar.gz
79+
docker load -i iotdb-enterprise-2.0.x.x-standalone-docker.tar.gz
8080
```
8181

8282
To view the loaded image, use the following command:
@@ -272,10 +272,10 @@ echo "192.168.1.5 iotdb-3" >> /etc/hosts
272272

273273
### 3.2 Load the Image File
274274

275-
For example, if the IoTDB container image file is named `iotdb-enterprise-1.3.2.3-standalone-docker.tar.gz`, execute the following command on all 3 servers to load the image:
275+
For example, if the IoTDB container image file is named `iotdb-enterprise-2.0.x.x.3-standalone-docker.tar.gz`, execute the following command on all 3 servers to load the image:
276276

277277
```Bash
278-
docker load -i iotdb-enterprise-1.3.2.3-standalone-docker.tar.gz
278+
docker load -i iotdb-enterprise-2.0.x.x-standalone-docker.tar.gz
279279
```
280280

281281
To view the loaded images, run:
@@ -306,7 +306,7 @@ On each server, create two YML files: `confignode.yml` and `datanode.yml`. Examp
306306
version: "3"
307307
services:
308308
iotdb-confignode:
309-
image: iotdb-enterprise:1.3.2.3-standalone #The image used
309+
image: iotdb-enterprise:2.0.x.x-standalone #The image used
310310
hostname: iotdb-1|iotdb-2|iotdb-3 #Choose from three options based on the actual situation
311311
container_name: iotdb-confignode
312312
command: ["bash", "-c", "entrypoint.sh confignode"]
@@ -342,7 +342,7 @@ services:
342342
version: "3"
343343
services:
344344
iotdb-datanode:
345-
image: iotdb-enterprise:1.3.2.3-standalone #The image used
345+
image: iotdb-enterprise:2.0.x.x-standalone #The image used
346346
hostname: iotdb-1|iotdb-2|iotdb-3 #Choose from three options based on the actual situation
347347
container_name: iotdb-datanode
348348
command: ["bash", "-c", "entrypoint.sh datanode"]

src/UserGuide/Master/Tree/Deployment-and-Maintenance/Docker-Deployment_apache.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -61,10 +61,10 @@ This section demonstrates how to deploy a standalone Docker version of 1C1D.
6161

6262
The Docker image of Apache IoTDB has been uploaded to https://hub.docker.com/r/apache/iotdb.
6363

64-
Taking obtaining version 1.3.2 as an example, pull the image command:
64+
Taking obtaining version 2.0.x as an example, pull the image command:
6565

6666
```bash
67-
docker pull apache/iotdb:1.3.2-standalone
67+
docker pull apache/iotdb:2.0.x-standalone
6868
```
6969

7070
View image:
@@ -238,10 +238,10 @@ echo "192.168.1.5 iotdb-3" >> /etc/hosts
238238

239239
The Docker image of Apache IoTDB has been uploaded tohttps://hub.docker.com/r/apache/iotdb。
240240

241-
Pull IoTDB images from three servers separately, taking version 1.3.2 as an example. The pull image command is:
241+
Pull IoTDB images from three servers separately, taking version 2.0.x as an example. The pull image command is:
242242

243243
```SQL
244-
docker pull apache/iotdb:1.3.2-standalone
244+
docker pull apache/iotdb:2.0.x-standalone
245245
```
246246

247247
View image:
@@ -274,7 +274,7 @@ On each server, two yml files need to be written, namely confignnode. yml and da
274274
version: "3"
275275
services:
276276
iotdb-confignode:
277-
image: iotdb-enterprise:1.3.2.3-standalone #The image used
277+
image: iotdb-enterprise:2.0.x-standalone #The image used
278278
hostname: iotdb-1|iotdb-2|iotdb-3 #Choose from three options based on the actual situation
279279
container_name: iotdb-confignode
280280
command: ["bash", "-c", "entrypoint.sh confignode"]
@@ -309,7 +309,7 @@ services:
309309
version: "3"
310310
services:
311311
iotdb-datanode:
312-
image: iotdb-enterprise:1.3.2.3-standalone #The image used
312+
image: iotdb-enterprise:2.0.x-standalone #The image used
313313
hostname: iotdb-1|iotdb-2|iotdb-3 #Choose from three options based on the actual situation
314314
container_name: iotdb-datanode
315315
command: ["bash", "-c", "entrypoint.sh datanode"]

src/UserGuide/Master/Tree/Deployment-and-Maintenance/Docker-Deployment_timecho.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -73,12 +73,12 @@ This section demonstrates how to deploy a standalone Docker version of 1C1D.
7373

7474
### 2.1 Load Image File
7575

76-
For example, the container image file name of IoTDB obtained here is: `iotdb-enterprise-1.3.2-3-standalone-docker.tar.gz`
76+
For example, the container image file name of IoTDB obtained here is: `iotdb-enterprise-2.0.x.x-standalone-docker.tar.gz`
7777

7878
Load image:
7979

8080
```Bash
81-
docker load -i iotdb-enterprise-1.3.2.3-standalone-docker.tar.gz
81+
docker load -i iotdb-enterprise-2.0.x.x-standalone-docker.tar.gz
8282
```
8383

8484
View image:
@@ -278,12 +278,12 @@ echo "192.168.1.5 iotdb-3" >> /etc/hosts
278278

279279
### 3.2 Load Image File
280280

281-
For example, the container image file name obtained for IoTDB is: `iotdb-enterprise-1.3.23-standalone-docker.tar.gz`
281+
For example, the container image file name obtained for IoTDB is: `iotdb-enterprise-2.0.x.x-standalone-docker.tar.gz`
282282

283283
Execute the load image command on three servers separately:
284284

285285
```Bash
286-
docker load -i iotdb-enterprise-1.3.2.3-standalone-docker.tar.gz
286+
docker load -i iotdb-enterprise-2.0.x.x-standalone-docker.tar.gz
287287
```
288288

289289
View image:
@@ -316,7 +316,7 @@ On each server, two yml files need to be written, namely confignnode. yml and da
316316
version: "3"
317317
services:
318318
iotdb-confignode:
319-
image: iotdb-enterprise:1.3.2.3-standalone #The image used
319+
image: iotdb-enterprise:2.0.x.x-standalone #The image used
320320
hostname: iotdb-1|iotdb-2|iotdb-3 #Choose from three options based on the actual situation
321321
container_name: iotdb-confignode
322322
command: ["bash", "-c", "entrypoint.sh confignode"]
@@ -352,7 +352,7 @@ services:
352352
version: "3"
353353
services:
354354
iotdb-datanode:
355-
image: iotdb-enterprise:1.3.2.3-standalone #The image used
355+
image: iotdb-enterprise:2.0.x.x-standalone #The image used
356356
hostname: iotdb-1|iotdb-2|iotdb-3 #Choose from three options based on the actual situation
357357
container_name: iotdb-datanode
358358
command: ["bash", "-c", "entrypoint.sh datanode"]

src/UserGuide/latest-Table/Deployment-and-Maintenance/Docker-Deployment_apache.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -62,10 +62,10 @@ This section demonstrates how to deploy a standalone Docker version of 1C1D.
6262

6363
The Docker image of Apache IoTDB has been uploaded to https://hub.docker.com/r/apache/iotdb.
6464

65-
Taking obtaining version 1.3.2 as an example, pull the image command:
65+
Taking obtaining version 2.0.x as an example, pull the image command:
6666

6767
```bash
68-
docker pull apache/iotdb:1.3.2-standalone
68+
docker pull apache/iotdb:2.0.x-standalone
6969
```
7070

7171
View image:
@@ -241,10 +241,10 @@ echo "192.168.1.5 iotdb-3" >> /etc/hosts
241241

242242
The Docker image of Apache IoTDB has been uploaded tohttps://hub.docker.com/r/apache/iotdb。
243243

244-
Pull IoTDB images from three servers separately, taking version 1.3.2 as an example. The pull image command is:
244+
Pull IoTDB images from three servers separately, taking version 2.0.x as an example. The pull image command is:
245245

246246
```SQL
247-
docker pull apache/iotdb:1.3.2-standalone
247+
docker pull apache/iotdb:2.0.x-standalone
248248
```
249249

250250
View image:
@@ -275,7 +275,7 @@ On each server, create two YML files: `confignode.yml` and `datanode.yml`. Examp
275275
version: "3"
276276
services:
277277
iotdb-confignode:
278-
image: iotdb-enterprise:1.3.2.3-standalone #The image used
278+
image: iotdb-enterprise:2.0.x-standalone #The image used
279279
hostname: iotdb-1|iotdb-2|iotdb-3 #Choose from three options based on the actual situation
280280
container_name: iotdb-confignode
281281
command: ["bash", "-c", "entrypoint.sh confignode"]
@@ -310,7 +310,7 @@ services:
310310
version: "3"
311311
services:
312312
iotdb-datanode:
313-
image: iotdb-enterprise:1.3.2.3-standalone #The image used
313+
image: iotdb-enterprise:2.0.x-standalone #The image used
314314
hostname: iotdb-1|iotdb-2|iotdb-3 #Choose from three options based on the actual situation
315315
container_name: iotdb-datanode
316316
command: ["bash", "-c", "entrypoint.sh datanode"]

src/UserGuide/latest-Table/Deployment-and-Maintenance/Docker-Deployment_timecho.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -73,10 +73,10 @@ This section demonstrates how to deploy a standalone Docker version of 1C1D.
7373

7474
### 2.1 Load the Image File
7575

76-
For example, if the IoTDB container image file you obtained is named: `iotdb-enterprise-1.3.2.3-standalone-docker.tar.gz`, use the following command to load the image:
76+
For example, if the IoTDB container image file you obtained is named: `iotdb-enterprise-2.0.x.x-standalone-docker.tar.gz`, use the following command to load the image:
7777

7878
```Bash
79-
docker load -i iotdb-enterprise-1.3.2.3-standalone-docker.tar.gz
79+
docker load -i iotdb-enterprise-2.0.x.x-standalone-docker.tar.gz
8080
```
8181

8282
To view the loaded image, use the following command:
@@ -272,10 +272,10 @@ echo "192.168.1.5 iotdb-3" >> /etc/hosts
272272

273273
### 3.2 Load the Image File
274274

275-
For example, if the IoTDB container image file is named `iotdb-enterprise-1.3.2.3-standalone-docker.tar.gz`, execute the following command on all 3 servers to load the image:
275+
For example, if the IoTDB container image file is named `iotdb-enterprise-2.0.x.x.3-standalone-docker.tar.gz`, execute the following command on all 3 servers to load the image:
276276

277277
```Bash
278-
docker load -i iotdb-enterprise-1.3.2.3-standalone-docker.tar.gz
278+
docker load -i iotdb-enterprise-2.0.x.x-standalone-docker.tar.gz
279279
```
280280

281281
To view the loaded images, run:
@@ -306,7 +306,7 @@ On each server, create two YML files: `confignode.yml` and `datanode.yml`. Examp
306306
version: "3"
307307
services:
308308
iotdb-confignode:
309-
image: iotdb-enterprise:1.3.2.3-standalone #The image used
309+
image: iotdb-enterprise:2.0.x.x-standalone #The image used
310310
hostname: iotdb-1|iotdb-2|iotdb-3 #Choose from three options based on the actual situation
311311
container_name: iotdb-confignode
312312
command: ["bash", "-c", "entrypoint.sh confignode"]
@@ -342,7 +342,7 @@ services:
342342
version: "3"
343343
services:
344344
iotdb-datanode:
345-
image: iotdb-enterprise:1.3.2.3-standalone #The image used
345+
image: iotdb-enterprise:2.0.x.x-standalone #The image used
346346
hostname: iotdb-1|iotdb-2|iotdb-3 #Choose from three options based on the actual situation
347347
container_name: iotdb-datanode
348348
command: ["bash", "-c", "entrypoint.sh datanode"]

src/UserGuide/latest/Deployment-and-Maintenance/Docker-Deployment_apache.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -61,10 +61,10 @@ This section demonstrates how to deploy a standalone Docker version of 1C1D.
6161

6262
The Docker image of Apache IoTDB has been uploaded to https://hub.docker.com/r/apache/iotdb.
6363

64-
Taking obtaining version 1.3.2 as an example, pull the image command:
64+
Taking obtaining version 2.0.x as an example, pull the image command:
6565

6666
```bash
67-
docker pull apache/iotdb:1.3.2-standalone
67+
docker pull apache/iotdb:2.0.x-standalone
6868
```
6969

7070
View image:
@@ -238,10 +238,10 @@ echo "192.168.1.5 iotdb-3" >> /etc/hosts
238238

239239
The Docker image of Apache IoTDB has been uploaded tohttps://hub.docker.com/r/apache/iotdb。
240240

241-
Pull IoTDB images from three servers separately, taking version 1.3.2 as an example. The pull image command is:
241+
Pull IoTDB images from three servers separately, taking version 2.0.x as an example. The pull image command is:
242242

243243
```SQL
244-
docker pull apache/iotdb:1.3.2-standalone
244+
docker pull apache/iotdb:2.0.x-standalone
245245
```
246246

247247
View image:
@@ -274,7 +274,7 @@ On each server, two yml files need to be written, namely confignnode. yml and da
274274
version: "3"
275275
services:
276276
iotdb-confignode:
277-
image: iotdb-enterprise:1.3.2.3-standalone #The image used
277+
image: iotdb-enterprise:2.0.x-standalone #The image used
278278
hostname: iotdb-1|iotdb-2|iotdb-3 #Choose from three options based on the actual situation
279279
container_name: iotdb-confignode
280280
command: ["bash", "-c", "entrypoint.sh confignode"]
@@ -309,7 +309,7 @@ services:
309309
version: "3"
310310
services:
311311
iotdb-datanode:
312-
image: iotdb-enterprise:1.3.2.3-standalone #The image used
312+
image: iotdb-enterprise:2.0.x-standalone #The image used
313313
hostname: iotdb-1|iotdb-2|iotdb-3 #Choose from three options based on the actual situation
314314
container_name: iotdb-datanode
315315
command: ["bash", "-c", "entrypoint.sh datanode"]

src/UserGuide/latest/Deployment-and-Maintenance/Docker-Deployment_timecho.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -73,12 +73,12 @@ This section demonstrates how to deploy a standalone Docker version of 1C1D.
7373

7474
### 2.1 Load Image File
7575

76-
For example, the container image file name of IoTDB obtained here is: `iotdb-enterprise-1.3.2-3-standalone-docker.tar.gz`
76+
For example, the container image file name of IoTDB obtained here is: `iotdb-enterprise-2.0.x.x-standalone-docker.tar.gz`
7777

7878
Load image:
7979

8080
```Bash
81-
docker load -i iotdb-enterprise-1.3.2.3-standalone-docker.tar.gz
81+
docker load -i iotdb-enterprise-2.0.x.x-standalone-docker.tar.gz
8282
```
8383

8484
View image:
@@ -278,12 +278,12 @@ echo "192.168.1.5 iotdb-3" >> /etc/hosts
278278

279279
### 3.2 Load Image File
280280

281-
For example, the container image file name obtained for IoTDB is: `iotdb-enterprise-1.3.23-standalone-docker.tar.gz`
281+
For example, the container image file name obtained for IoTDB is: `iotdb-enterprise-2.0.x.x-standalone-docker.tar.gz`
282282

283283
Execute the load image command on three servers separately:
284284

285285
```Bash
286-
docker load -i iotdb-enterprise-1.3.2.3-standalone-docker.tar.gz
286+
docker load -i iotdb-enterprise-2.0.x.x-standalone-docker.tar.gz
287287
```
288288

289289
View image:
@@ -316,7 +316,7 @@ On each server, two yml files need to be written, namely confignnode. yml and da
316316
version: "3"
317317
services:
318318
iotdb-confignode:
319-
image: iotdb-enterprise:1.3.2.3-standalone #The image used
319+
image: iotdb-enterprise:2.0.x.x-standalone #The image used
320320
hostname: iotdb-1|iotdb-2|iotdb-3 #Choose from three options based on the actual situation
321321
container_name: iotdb-confignode
322322
command: ["bash", "-c", "entrypoint.sh confignode"]
@@ -352,7 +352,7 @@ services:
352352
version: "3"
353353
services:
354354
iotdb-datanode:
355-
image: iotdb-enterprise:1.3.2.3-standalone #The image used
355+
image: iotdb-enterprise:2.0.x.x-standalone #The image used
356356
hostname: iotdb-1|iotdb-2|iotdb-3 #Choose from three options based on the actual situation
357357
container_name: iotdb-datanode
358358
command: ["bash", "-c", "entrypoint.sh datanode"]

0 commit comments

Comments
 (0)