Skip to content

Commit a11ed26

Browse files
authored
Merge pull request #346 from olzhik11/feat/LAM-354
feat: change FE port to 5667
1 parent 1948c1c commit a11ed26

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ docker compose up -d
4949
```
5050

5151
This will spin up a lightweight version of the stack with Postgres, app-server, and frontend. This is good for a quickstart
52-
or for lightweight usage. You can access the UI at http://localhost:3000 in your browser.
52+
or for lightweight usage. You can access the UI at http://localhost:5667 in your browser.
5353

5454
For production environment, we recommend using our [managed platform](https://www.lmnr.ai/projects) or `docker compose -f docker-compose-full.yml up -d`.
5555

docker-compose-full.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -114,21 +114,21 @@ services:
114114
frontend:
115115
image: ghcr.io/lmnr-ai/frontend
116116
ports:
117-
- "3000:3000"
117+
- "5667:5667"
118118
pull_policy: always
119119
depends_on:
120120
postgres:
121121
condition: service_healthy
122122
clickhouse:
123123
condition: service_started
124124
environment:
125-
- PORT=3000
125+
- PORT=5667
126126
- BACKEND_URL=http://app-server:8000
127127
- SHARED_SECRET_TOKEN=${SHARED_SECRET_TOKEN}
128128
- DATABASE_URL=postgres://${POSTGRES_USER}:${POSTGRES_PASSWORD}@postgres:5432/${POSTGRES_DB}
129-
- NEXTAUTH_URL=http://localhost:3000
129+
- NEXTAUTH_URL=http://localhost:5667
130130
- NEXTAUTH_SECRET=some_secret
131-
- NEXT_PUBLIC_URL=http://localhost:3000
131+
- NEXT_PUBLIC_URL=http://localhost:5667
132132
- ENVIRONMENT=FULL
133133
- CLICKHOUSE_URL=http://clickhouse:8123
134134
- CLICKHOUSE_USER=${CLICKHOUSE_USER}

docker-compose.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,18 +27,18 @@ services:
2727
image: ghcr.io/lmnr-ai/frontend
2828
pull_policy: always
2929
ports:
30-
- "3000:3000"
30+
- "5667:5667"
3131
depends_on:
3232
postgres:
3333
condition: service_healthy
3434
environment:
3535
DATABASE_URL: postgres://${POSTGRES_USER}:${POSTGRES_PASSWORD}@postgres:5432/${POSTGRES_DB}
36-
PORT: 3000
36+
PORT: 5667
3737
BACKEND_URL: http://app-server:8000
3838
SHARED_SECRET_TOKEN: ${SHARED_SECRET_TOKEN}
39-
NEXTAUTH_URL: http://localhost:3000
39+
NEXTAUTH_URL: http://localhost:5667
4040
NEXTAUTH_SECRET: some_secret
41-
NEXT_PUBLIC_URL: http://localhost:3000
41+
NEXT_PUBLIC_URL: http://localhost:5667
4242
ENVIRONMENT: LITE # this disables runtime dependency on clickhouse
4343

4444
app-server:

0 commit comments

Comments
 (0)