Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@ You can read more about DAOs and schema variants in [the official documentation]
To use `akka-persistence-postgres` in your SBT project, add the following to your `build.sbt`:

```scala
libraryDependencies += "com.swissborg" %% "akka-persistence-postgres" % "0.5.0-M4"
libraryDependencies += "com.swissborg" %% "akka-persistence-postgres" % "0.5.0-M6"
```

For a maven project add:
```xml
<dependency>
<groupId>com.swissborg</groupId>
<artifactId>akka-persistence-postgres_2.13</artifactId>
<version>0.5.0-M4</version>
<version>0.5.0-M6</version>
</dependency>
```
to your `pom.xml`.
Expand Down Expand Up @@ -130,14 +130,14 @@ We provide you with an optional artifact, `akka-persistence-postgres-migration`
##### Add akka-persistence-migration to your project
Add the following to your `build.sbt`
```
libraryDependencies += "com.swissborg" %% "akka-persistence-postgres-migration" % "0.5.0-M4"
libraryDependencies += "com.swissborg" %% "akka-persistence-postgres-migration" % "0.5.0-M6"
```
For a maven project add:
```xml
<dependency>
<groupId>com.swisborg</groupId>
<artifactId>akka-persistence-postgres-migration_2.13</artifactId>
<version>0.5.0-M4</version>
<version>0.5.0-M6</version>
</dependency>
```
to your `pom.xml`.
Expand Down
4 changes: 2 additions & 2 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@ The main goal is to keep index size and memory consumption on a moderate level w
To use `akka-persistence-postgres` in your SBT project, add the following to your `build.sbt`:

```scala
libraryDependencies += "com.swisborg" %% "akka-persistence-postgres" % "0.5.0-M4"
libraryDependencies += "com.swisborg" %% "akka-persistence-postgres" % "0.5.0-M6"
```

For a maven project add:
```xml
<dependency>
<groupId>com.swisborg</groupId>
<artifactId>akka-persistence-postgres_2.13</artifactId>
<version>0.5.0-M4</version>
<version>0.5.0-M6</version>
</dependency>
```
to your `pom.xml`.
Expand Down
4 changes: 2 additions & 2 deletions docs/migration.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,14 @@ We provide you with an optional artifact, `akka-persistence-postgres-migration`
#### Add akka-persistence-migration to your project
Add the following to your `build.sbt`
```
libraryDependencies += "com.swissborg" %% "akka-persistence-postgres-migration" % "0.5.0-M4"
libraryDependencies += "com.swissborg" %% "akka-persistence-postgres-migration" % "0.5.0-M6"
```
For a maven project add:
```xml
<dependency>
<groupId>com.swisborg</groupId>
<artifactId>akka-persistence-postgres-migration_2.13</artifactId>
<version>0.5.0-M4</version>
<version>0.5.0-M6</version>
</dependency>
```
to your `pom.xml`.
Expand Down
21 changes: 12 additions & 9 deletions scripts/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
postgres:
image: postgres:latest
container_name: postgres
environment:
- "TZ=Europe/Amsterdam"
- "POSTGRES_USER=docker"
- "POSTGRES_PASSWORD=docker"
ports:
- "5432:5432" # credentials (docker:docker)
version: "3"

services:
postgres:
image: postgres:latest
container_name: postgres
environment:
- "TZ=Europe/Amsterdam"
- "POSTGRES_USER=docker"
- "POSTGRES_PASSWORD=docker"
ports:
- "5432:5432" # credentials (docker:docker)