Skip to content

Commit c36ca01

Browse files
committed
settings for docker container on localhost:3001
1 parent 8f78841 commit c36ca01

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

docker-compose.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ services:
99
- REDIS_HOST=cache
1010
- REDIS_PORT=6379
1111
ports:
12-
- "3000:3000"
13-
- "4000:4000"
12+
- "3001:3000"
13+
- "4001:4000"
1414
depends_on:
1515
db:
1616
condition: service_healthy
@@ -23,7 +23,7 @@ services:
2323
db:
2424
image: kartoza/postgis:15
2525
ports:
26-
- "5433:5432"
26+
- "5434:5432"
2727
environment:
2828
- POSTGRES_USER=postgres
2929
- POSTGRES_PASS=postgres
@@ -39,7 +39,7 @@ services:
3939
image: redis:6.2-alpine
4040
restart: always
4141
ports:
42-
- "6379:6379"
42+
- "6380:6379"
4343
environment:
4444
- ALLOW_EMPTY_PASSWORD=yes
4545
healthcheck:

ui/.env.development

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
NEXT_PUBLIC_GQL_ENDPOINT='http://localhost:${SERVER_PORT:-4000}/graphql'
2-
NEXT_PUBLIC_SOCKET_ENDPOINT='ws://localhost:${SERVER_PORT:-4000}/socket'
1+
NEXT_PUBLIC_GQL_ENDPOINT='http://localhost:${SERVER_PORT:-4001}/graphql'
2+
NEXT_PUBLIC_SOCKET_ENDPOINT='ws://localhost:${SERVER_PORT:-4001}/socket'
33
NEXT_PUBLIC_S3_BUCKET='dev-streaming-orcasound-net'

0 commit comments

Comments
 (0)