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 ca8c131 commit f1994fcCopy full SHA for f1994fc
backend/question/docker-compose.yml
@@ -9,7 +9,7 @@ services:
9
environment:
10
POSTGRES_DB: 'Question'
11
POSTGRES_USER: 'user'
12
- POSTGRES_PASSWORD: 'password'
+ POSTGRES_PASSWORD: 'user'
13
PGDATA: '/data/question-db'
14
volumes:
15
- 'question-db-docker:/data/question-db'
@@ -26,7 +26,7 @@ services:
26
dockerfile: ./express.Dockerfile
27
target: build
28
ports:
29
- - '8002:8001'
+ - '8000:8001'
30
command: node dist/index.js
31
depends_on:
32
postgres:
backend/question/src/lib/db/index.ts
@@ -3,7 +3,7 @@ import postgres from 'postgres';
3
4
const queryClient = postgres({
5
host: 'localhost',
6
- port: 5431,
+ port: 5430,
7
database: 'template',
8
user: 'user',
password: 'user',
0 commit comments