Skip to content

Commit

Permalink
Prepare for 1.3.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
istreeter committed Jun 10, 2022
1 parent d0d0119 commit 1426784
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
Version 1.3.1 (2022-06-10)
--------------------------
Fix embedded Iglu repository in docker image (#96)

Version 1.3.0 (2022-05-20)
--------------------------
Bump collector to 2.6.0 and enrich to 3.1.3 (#79)
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ Snowplow Micro is hosted on Docker Hub ([snowplow/snowplow-micro][docker-micro])
The following command can be used to run Micro with the default configuration:

```bash
docker run -p 9090:9090 snowplow/snowplow-micro:1.3.0
docker run -p 9090:9090 snowplow/snowplow-micro:1.3.1
```

A [distroless][distroless-repo] image is also provided, which benefits from being smaller and more secure, with the downside of basic utilities (such as a shell) not being present in the image.

The distroless image is tagged as `snowplow/snowplow-micro:1.3.0-distroless` on Docker Hub.
The distroless image is tagged as `snowplow/snowplow-micro:1.3.1-distroless` on Docker Hub.

#### Configuring Micro

Expand All @@ -43,7 +43,7 @@ The configuration files must be placed in a folder that is mounted in the Docker
docker run \
--mount type=bind,source=$(pwd)/example,destination=/config \
-p 9090:9090 \
snowplow/snowplow-micro:1.3.0 \
snowplow/snowplow-micro:1.3.1 \
--collector-config /config/micro.conf \
--iglu /config/iglu.json
```
Expand All @@ -67,16 +67,16 @@ example
If you cannot use Docker, a Snowplow Micro jar file is hosted on the [Github releases][gh-releases]. As an example, run Micro as:

```bash
java -jar snowplow-micro-1.3.0.jar --collector-config example/micro.conf --iglu example/iglu.json
java -jar snowplow-micro-1.3.1.jar --collector-config example/micro.conf --iglu example/iglu.json
```

In case you also want an embedded Iglu, apply the same directory structure as shown above and run for example:

```bash
# Unix
java -cp snowplow-micro-1.3.0.jar:example com.snowplowanalytics.snowplow.micro.Main --collector-config example/micro.conf --iglu example/iglu.json
java -cp snowplow-micro-1.3.1.jar:example com.snowplowanalytics.snowplow.micro.Main --collector-config example/micro.conf --iglu example/iglu.json
# Windows
java -cp snowplow-micro-1.3.0.jar;example com.snowplowanalytics.snowplow.micro.Main --collector-config example/micro.conf --iglu example/iglu.json
java -cp snowplow-micro-1.3.1.jar;example com.snowplowanalytics.snowplow.micro.Main --collector-config example/micro.conf --iglu example/iglu.json
```

### Send events and start testing
Expand Down

0 comments on commit 1426784

Please sign in to comment.