diff --git a/CHANGELOG b/CHANGELOG index d326f03..04383c3 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -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) diff --git a/README.md b/README.md index d4242d7..54a08d2 100644 --- a/README.md +++ b/README.md @@ -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 @@ -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 ``` @@ -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