We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 88afb49 commit dcc7363Copy full SHA for dcc7363
docker-dev.yml
@@ -0,0 +1,23 @@
1
+version: '2'
2
+
3
+services:
4
+ zookeeper:
5
+ image: jplock/zookeeper
6
+ ports:
7
+ - '2181:2181'
8
9
+ cassandra:
10
+ image: cassandra
11
12
+ - '9042:9042'
13
+ - '7000:7000'
14
+ - '7199:7199'
15
16
+ query_db:
17
+ image: postgres:9.6.1
18
19
+ - '54321:5432'
20
+ environment:
21
+ POSTGRES_DB: hmda
22
+ POSTGRES_USER: postgres
23
+ POSTGRES_PASSWORD: postgres
query/src/main/resources/application.conf
@@ -49,7 +49,7 @@ db {
49
driver = "slick.driver.PostgresDriver$"
50
51
db {
52
- url = "jdbc:postgresql://localhost/hmda?user=postgres&password=postgres"
+ url = "jdbc:postgresql://192.168.99.100/hmda?user=postgres&password=postgres"
53
url = ${?JDBC_URL}
54
driver = org.postgresql.Driver
55
numThreads = 2
0 commit comments