Skip to content

Commit

Permalink
Update Docker Image Tags
Browse files Browse the repository at this point in the history
  • Loading branch information
alexanderkiel committed Dec 24, 2021
1 parent 2cd79ff commit 66e16fa
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 9 deletions.
1 change: 1 addition & 0 deletions DEVELOPMENT.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

* create a release branch called `release-v<version>` like `release-v0.13.1`
* rename every occurrence of the old version, say `0.13.0` into the new version, say `0.13.1`
* rename every occurrence of old Docker images like `samply/blaze:0.13` into the new image, say `samply/blaze:0.14`
* update the last changed date in `blaze.rest-api.capabilities`
* update the CHANGELOG based on the milestone
* create a commit with the title `Release v<version>`
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ In order to run Blaze just execute the following:

```sh
docker volume create blaze-data
docker run -p 8080:8080 -v blaze-data:/app/data samply/blaze:0.13
docker run -p 8080:8080 -v blaze-data:/app/data samply/blaze:0.15
```

Blaze will create multiple directories inside the `blaze-data` volume on its first start and use the same directories on subsequent starts.
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: '3.2'
services:
blaze:
image: "samply/blaze:0.13"
image: "samply/blaze:0.15"
environment:
BASE_URL: "http://localhost:8080"
JAVA_TOOL_OPTIONS: "-Xmx2g"
Expand Down
2 changes: 1 addition & 1 deletion docs/cql-queries.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ The most accessible way to create and execute CQL queries is to use the Quality
If you don't already have Blaze running, you can read about how to do it in [Deployment](deployment/README.md). If you have Docker available just run:

```
docker run -p 8080:8080 -v blaze-data:/app/data samply/blaze:0.13
docker run -p 8080:8080 -v blaze-data:/app/data samply/blaze:0.15
```

Start the Quality Reporting UI. You should see an empty measure list.
Expand Down
2 changes: 1 addition & 1 deletion docs/cql-queries/command-line.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ This section describes how to evaluate a CQL query using the command line only.
If you don't already have Blaze running, you can read about how to do it in [Deployment](../deployment/README.md). If you have Docker available just run:

```
docker run -p 8080:8080 -v blaze-data:/app/data samply/blaze:0.13
docker run -p 8080:8080 -v blaze-data:/app/data samply/blaze:0.15
```

## Use the evaluate-measure.sh Script
Expand Down
2 changes: 1 addition & 1 deletion docs/data-sync/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: '3.2'
services:
blaze:
image: "samply/blaze:0.13"
image: "samply/blaze:0.15"
environment:
BASE_URL: "http://localhost:8080"
JAVA_TOOL_OPTIONS: "-Xmx4g"
Expand Down
4 changes: 2 additions & 2 deletions docs/deployment/distributed/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ services:
HEAP_NEWSIZE: "200M"

blaze-1:
image: "samply/blaze:0.13"
image: "samply/blaze:0.15"
hostname: "blaze-1"
environment:
JAVA_TOOL_OPTIONS: "-Xmx4g"
Expand Down Expand Up @@ -102,7 +102,7 @@ services:
- cassandra-3

blaze-2:
image: "samply/blaze:0.13"
image: "samply/blaze:0.15"
hostname: "blaze-2"
environment:
JAVA_TOOL_OPTIONS: "-Xmx4g"
Expand Down
4 changes: 2 additions & 2 deletions docs/deployment/docker-deployment.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ docker volume create blaze-data
## Blaze

```sh
docker run -d --name blaze -p 8080:8080 -v blaze-data:/app/data samply/blaze:0.13
docker run -d --name blaze -p 8080:8080 -v blaze-data:/app/data samply/blaze:0.15
```

Blaze should log something like this:
Expand Down Expand Up @@ -61,7 +61,7 @@ A Docker Compose file looks like this:
version: '3.2'
services:
blaze:
image: "samply/blaze:0.13"
image: "samply/blaze:0.15"
environment:
BASE_URL: "http://localhost:8080"
JAVA_TOOL_OPTIONS: "-Xmx2g"
Expand Down

0 comments on commit 66e16fa

Please sign in to comment.