Skip to content

Commit f1994fc

Browse files
committed
PEER-117: Change ports
1 parent ca8c131 commit f1994fc

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

backend/question/docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ services:
99
environment:
1010
POSTGRES_DB: 'Question'
1111
POSTGRES_USER: 'user'
12-
POSTGRES_PASSWORD: 'password'
12+
POSTGRES_PASSWORD: 'user'
1313
PGDATA: '/data/question-db'
1414
volumes:
1515
- 'question-db-docker:/data/question-db'
@@ -26,7 +26,7 @@ services:
2626
dockerfile: ./express.Dockerfile
2727
target: build
2828
ports:
29-
- '8002:8001'
29+
- '8000:8001'
3030
command: node dist/index.js
3131
depends_on:
3232
postgres:

backend/question/src/lib/db/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import postgres from 'postgres';
33

44
const queryClient = postgres({
55
host: 'localhost',
6-
port: 5431,
6+
port: 5430,
77
database: 'template',
88
user: 'user',
99
password: 'user',

0 commit comments

Comments
 (0)