使用 docker-compose up 未从 React 应用程序 运行 获得任何响应
Not getting any response from React application run with docker-compose up
Compiled successfully!
web_1 |
web_1 | You can now view react-docker-app in the browser.
web_1 |
web_1 | Local: http://localhost:3000
web_1 | On Your Network: http://172.18.0.2:3000
web_1 |
web_1 | Note that the development build is not optimized.
web_1 | To create a production build, use yarn build.
web_1 |
运行 docker-compose up 给出了上面的输出,但是当我尝试在我的浏览器上连接到服务器时,我没有得到任何东西:
The server at 172.18.0.2 is taking too long to respond.
Firefox can’t establish a connection to the server at localhost:3000.
我输入的端口和地址:
http://172.18.0.2:3000/
http://localhost:3000/
我没有收到任何错误消息。我正在使用我用 npx create-react-app docker-app.
创建的样板项目
有什么问题吗
这是我的 docker 文件:
version: '3'
services:
web:
build:
context: .
dockerfile: Dockerfile.dev
ports:
- "3000:3000"
stdin_open: true
tty: true
volumes:
- /app/node_modules
- .:/app
Dockerfile.dev:
FROM node:11.10.1-alpine
WORKDIR '/app'
COPY package.json .
RUN npm install
COPY . .
CMD ["npm", "run", "start"]
我可以看看你的Dockerfile.dev吗?
它应该看起来像这样:
FROM node:13
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
EXPOSE 3000
CMD [ "npm", "start" ]
我在 Windows 8 上使用 Docker 工具箱,因为我无法在 Windows 10 上使用最新的 Docker,所以 ip 是 http://192.168.99.100:3000/ 似乎 Docker Toolbox 的工作方式有点不同,因为它有自己的 IP 地址。
Compiled successfully!
web_1 |
web_1 | You can now view react-docker-app in the browser.
web_1 |
web_1 | Local: http://localhost:3000
web_1 | On Your Network: http://172.18.0.2:3000
web_1 |
web_1 | Note that the development build is not optimized.
web_1 | To create a production build, use yarn build.
web_1 |
运行 docker-compose up 给出了上面的输出,但是当我尝试在我的浏览器上连接到服务器时,我没有得到任何东西:
The server at 172.18.0.2 is taking too long to respond.
Firefox can’t establish a connection to the server at localhost:3000.
我输入的端口和地址:
http://172.18.0.2:3000/
http://localhost:3000/
我没有收到任何错误消息。我正在使用我用 npx create-react-app docker-app.
创建的样板项目有什么问题吗
这是我的 docker 文件:
version: '3'
services:
web:
build:
context: .
dockerfile: Dockerfile.dev
ports:
- "3000:3000"
stdin_open: true
tty: true
volumes:
- /app/node_modules
- .:/app
Dockerfile.dev:
FROM node:11.10.1-alpine
WORKDIR '/app'
COPY package.json .
RUN npm install
COPY . .
CMD ["npm", "run", "start"]
我可以看看你的Dockerfile.dev吗?
它应该看起来像这样:
FROM node:13
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
EXPOSE 3000
CMD [ "npm", "start" ]
我在 Windows 8 上使用 Docker 工具箱,因为我无法在 Windows 10 上使用最新的 Docker,所以 ip 是 http://192.168.99.100:3000/ 似乎 Docker Toolbox 的工作方式有点不同,因为它有自己的 IP 地址。