Skip to content

Commit

Permalink
bug 修复
Browse files Browse the repository at this point in the history
  • Loading branch information
pakizheng committed Jan 11, 2024
1 parent f7c9ed7 commit c596fc2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docker_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,5 +49,5 @@ jobs:
fi
echo '${{ secrets.DOCKERHUB_TOKEN }}' | docker login --username zhengpq --password-stdin
docker pull zhengpq/im-web:latest
docker run -d -p 3000:3000 --name im-web zhengpq/im-web:latest
docker run -d -p 8000:8000 --name im-web zhengpq/im-web:latest
"
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@

FROM node:18.15.0

EXPOSE 3000
EXPOSE 8000

WORKDIR /usr/src/app

Expand Down
2 changes: 1 addition & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ async function bootstrap() {

app.useWebSocketAdapter(redisIoAdapter);
app.use(cookieParser());
await app.listen(3000);
await app.listen(8000);
}
bootstrap();

0 comments on commit c596fc2

Please sign in to comment.