There was an error while loading. Please reload this page.
1 parent c2548e8 commit c89c797Copy full SHA for c89c797
data-pipeline/database.json
@@ -0,0 +1,10 @@
1
+{
2
+ "messages": [
3
+ {
4
+ "id": "1",
5
+ "from": "user-id-1",
6
+ "to": "user-id-2",
7
+ "text": "hello world"
8
+ }
9
+ ]
10
+}
data-pipeline/docker-compose.yml
@@ -0,0 +1,11 @@
+version: '3'
+services:
+ # https://github.com/clue/docker-json-server
+ db-mock:
+ image: zhenik/json-server
+ environment:
+ - ID_MAP=id
+ ports:
+ - "3000:80"
+ volumes:
11
+ - ./database.json:/data/db.json
0 commit comments