We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 54429c3 + 92ca93e commit abc8e4aCopy full SHA for abc8e4a
2 files changed
README.md
@@ -220,6 +220,11 @@ docker run --rm \
220
postgres
221
```
222
223
+Alternatively, use Docker Compose
224
+```shell
225
+docker compose up
226
+```
227
+
228
### Running tests
229
230
Create and initialize the test event store databases:
docker-compose.yml
@@ -0,0 +1,14 @@
1
+version: "3.3"
2
3
+services:
4
+ db:
5
+ image: postgres
6
+ environment:
7
+ PGDATA: /pgtmpfs
8
+ POSTGRES_USER: postgres
9
+ POSTGRES_PASSWORD: postgres
10
+ ports:
11
+ - "5432:5432"
12
+ tmpfs:
13
+ - "/pgtmpfs"
14
0 commit comments