We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d3da6d5 commit 3215304Copy full SHA for 3215304
.gitignore
@@ -5,3 +5,4 @@ npm-debug.log
5
client/dist/
6
coverage
7
.vscode
8
+deploy/db
deploy/docker-compose.yml
@@ -0,0 +1,20 @@
1
+version: "3"
2
+services:
3
+ db:
4
+ image: rethinkdb
+ volumes:
+ - ./db:/data
+
+ api:
9
+ build: ../server
10
+ environment:
11
+ - EXPERTS_DB_URL=db
12
+ ports:
13
+ - 8080:8080
14
15
+ ui:
16
+ build: ../client
17
18
+ - API_HOST=http://localhost:8080
19
20
+ - 80:3000
0 commit comments