Skip to content

Commit 63eefc7

Browse files
authored
Bump image versions to 0.7.1 (#72)
1 parent 4fa723a commit 63eefc7

File tree

9 files changed

+12
-12
lines changed

9 files changed

+12
-12
lines changed

getting-started-examples/01_kafka_to_console/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ This project demonstrates how to use [DataSQRL](https://datasqrl.com) to build a
1010
Run the following command from the project root where your `package.json` and SQRL scripts reside:
1111

1212
```bash
13-
docker run -it --rm -p 8888:8888 -p 9092:9092 -v $PWD:/build datasqrl/cmd:0.7.0 run -c package.json
13+
docker run -it --rm -p 8888:8888 -p 9092:9092 -v $PWD:/build datasqrl/cmd:0.7.1 run -c package.json
1414
```
1515

1616
## Generate Data

getting-started-examples/02_kafka_to_kafka/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ This project demonstrates how to use [DataSQRL](https://datasqrl.com) to build a
1010
Run the following command from the project root where your `package.json` and SQRL scripts reside:
1111

1212
```bash
13-
docker run -it --rm -p 8888:8888 -p 9092:9092 -v $PWD:/build datasqrl/cmd:0.7.0 run -c package.json
13+
docker run -it --rm -p 8888:8888 -p 9092:9092 -v $PWD:/build datasqrl/cmd:0.7.1 run -c package.json
1414
```
1515

1616
## Generate Data

getting-started-examples/03_two_streams_kafka_to_kafka/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ This project demonstrates how to use [DataSQRL](https://datasqrl.com) to build a
1313
Run the following command from the project root where your `package.json` and SQRL scripts reside:
1414

1515
```bash
16-
docker run -it --rm -p 8888:8888 -p 9092:9092 -v $PWD:/build datasqrl/cmd:0.7.0 run -c package.json
16+
docker run -it --rm -p 8888:8888 -p 9092:9092 -v $PWD:/build datasqrl/cmd:0.7.1 run -c package.json
1717
```
1818

1919
## Generate Data

getting-started-examples/04_two_streams_external_kafka_to_kafka/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ This project demonstrates how to use [DataSQRL](https://datasqrl.com) to build a
1818

1919
Run the following command from the project root where your `package.json` and SQRL scripts reside:
2020
```bash
21-
docker run -it --rm -p 8888:8888 -p 8081:8081 -v $PWD:/build -v $PWD/data:/data datasqrl/cmd:0.7.0 run -c package.json
21+
docker run -it --rm -p 8888:8888 -p 8081:8081 -v $PWD:/build -v $PWD/data:/data datasqrl/cmd:0.7.1 run -c package.json
2222
```
2323
> [!NOTE]
2424
> We removed `-p 9092:9092` as we are using our own kafka running locally on host machine now

getting-started-examples/05_file_iceberg_test/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ This project demonstrates how to use [DataSQRL](https://datasqrl.com) to build a
99
Run the following command from the project root where your `package.json` and SQRL scripts reside:
1010

1111
```bash
12-
docker run -it --rm -p 8888:8888 -p 8081:8081 -v $PWD:/build -v $PWD/data:/data datasqrl/cmd:0.7.0 run -c package.json
12+
docker run -it --rm -p 8888:8888 -p 8081:8081 -v $PWD:/build -v $PWD/data:/data datasqrl/cmd:0.7.1 run -c package.json
1313
```
1414

1515
> [!NOTE]

getting-started-examples/06_external_kafka_iceberg_test/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ This project demonstrates how to use [DataSQRL](https://datasqrl.com) to build a
99

1010
Run the following command from the project root where your `package.json` and SQRL scripts reside:
1111
```bash
12-
docker run -it --rm -p 8888:8888 -p 8081:8081 -v $PWD:/build -v $PWD/data:/data datasqrl/cmd:0.7.0 run -c package.json
12+
docker run -it --rm -p 8888:8888 -p 8081:8081 -v $PWD:/build -v $PWD/data:/data datasqrl/cmd:0.7.1 run -c package.json
1313
```
1414
> [!NOTE]
1515
> We removed `-p 9092:9092` as we are using our own kafka running locally on host machine now

getting-started-examples/07_external_kafka_iceberg_glue_test/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ docker run -it --rm \
2020
-v ~/.aws:/root/.aws \
2121
-e AWS_REGION=us-east-1 \
2222
-e S3_WAREHOUSE_PATH=s3://<bucket>/path/to/warehouse/ \
23-
datasqrl/cmd:0.7.0 run -c package.json
23+
datasqrl/cmd:0.7.1 run -c package.json
2424
```
2525
> [!NOTE]
2626
> We removed `-p 9092:9092` as we are using our own Kafka running locally on host machine now

getting-started-examples/08_schema_registry_kafka_to_kafka/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Run the following command from the project root where your `package.json` and SQ
3030
docker run -it --rm \
3131
-p 8888:8888 \
3232
-v $PWD:/build \
33-
datasqrl/cmd:0.7.0 run -c package.json
33+
datasqrl/cmd:0.7.1 run -c package.json
3434
```
3535

3636
## Generate Data

getting-started-examples/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ docker run -it --rm \
3939
-p 8888:8888 \
4040
-p 8081:8081 \
4141
-v $PWD:/build \
42-
datasqrl/cmd:0.7.0 run -c package.json
42+
datasqrl/cmd:0.7.1 run -c package.json
4343
```
4444
#### Persistent Data
4545

@@ -51,7 +51,7 @@ docker run -it --rm \
5151
-p 8081:8081 \
5252
-v $PWD:/build \
5353
-v $PWD/data:/data \
54-
datasqrl/cmd:0.7.0 run -c package.json
54+
datasqrl/cmd:0.7.1 run -c package.json
5555
```
5656

5757
#### Mount External Services
@@ -66,15 +66,15 @@ docker run -it --rm \
6666
-v ~/.aws:/root/.aws \
6767
-e AWS_REGION=us-east-1 \
6868
-e S3_WAREHOUSE_PATH=s3://your-bucket/path/ \
69-
datasqrl/cmd:0.7.0 run -c package.json
69+
datasqrl/cmd:0.7.1 run -c package.json
7070
```
7171

7272
### Compile Without Running
7373

7474
```bash
7575
docker run -it --rm \
7676
-v $PWD:/build \
77-
datasqrl/cmd:0.7.0 compile -c package.json
77+
datasqrl/cmd:0.7.1 compile -c package.json
7878
```
7979

8080
---

0 commit comments

Comments
 (0)