我正在尝试停靠Vite React-Typescript样板设置,但无法连接到容器。
已安装的vite-react-typescript样板文件:npm init vite@latest vite-docker-demo -- --template react-ts
停靠文件
# Declare the base image
FROM node:lts-alpine3.14
# Build step
# 1. copy package.json and package-lock.json to /app dir
RUN mkdir /app
COPY package*.json /app
# 2. Change working directory to newly created app dir
WORKDIR /app
# 3 . Install dependencies
RUN npm ci
# 4. Copy the source code to /app dir
COPY . .
# 5. Expose port 3000 on the container
EXPOSE 3000
# 6. Run the app
CMD ["npm", "run", "dev"]
以分离模式运行Docker容器并打开主机上的本地dev端口3000的命令:docker run -d -p 3000:3000 vite
vite示例似乎在容器中运行得很好(docker日志输出):
> vite-docker@0.0.0 dev /app
> vite
Pre-bundling dependencies:
react
react-dom
(this will be run only when your dependencies or config have changed)
vite v2.4.4 dev server running at:
> Local: http://localhost:3000/
> Network: use `--host` to expose
ready in 244ms.
然而,当我在Chrome中导航到http://localhost:3000/
时,我看到一个错误指示The connection was reset
。
任何帮助解决这个问题将不胜感激!
3条答案
按热度按时间xkrw2x1b1#
原来我需要将
host
配置为localhost
以外的其他内容。在
vite.config.ts
范围内:解决问题。
iqxoj9l92#
在package.json中使用脚本
例如:
或使用
vite --host
运行myss37ts3#
要使用热重新加载,以便实际反映更改,请执行以下操作: