我已经用create-react-app设置了我的react应用,并且我试图用Docker容器和Docker compose运行它。 但是,当我用Docker compose运行它时,出现了以下错误。
web_1 | Could not find a required file.
web_1 | Name: index.html
web_1 | Searched in: /usr/src/app/web_client/public
我正在使用Windows 10和Docker快速入门终端
这是我的文件夹结构:
vocabulary-app
|
web_client
|
node_modules/
public/
src/
package.json
package-lock.json
Dockerfile
yarn.lock
docker-compose.yml
这里是docker-compose.yml
### Client SERVER ###
web:
build: ./web_client
environment:
- REACT_APP_PORT=80
expose:
- 80
ports:
- "80:80"
volumes:
- ./web_client/src:/usr/src/app/web_client/src
- ./web_client/public:/usr/src/app/web_client/public
links:
- server
command: npm start
这里是Dockerfile
FROM node:9.0.0
RUN mkdir -p /usr/src/app/web_client
WORKDIR /usr/src/app/web_client
COPY . .
RUN rm -Rf node_modules
RUN npm install
CMD npm start
我还尝试在docker中探索文件系统,并得到以下结果:
$ docker run -t -i vocabularyapp_web /bin/bash
root@2c099746ebab:/usr/src/app/web_client# ls
Dockerfile node_modules package.json src
README.md package-lock.json public yarn.lock
root@2c099746ebab:/usr/src/app/web_client# cd public/
root@2c099746ebab:/usr/src/app/web_client/public# ls
favicon.ico index.html manifest.json
这个基本上意味着index.html
文件在那里,所以我对错误消息更加困惑。
有人对此有解决方案吗?
答案 0 :(得分:1)
我没有docker-compose文件,但是我能够通过docker命令获得类似的react应用来运行
filter
然后我可以从docker run -v ${PWD}:/app -v /app/node_modules -p 3001:3000 --rm app-name:dev
访问我的应用程序
答案 1 :(得分:1)
在Ubuntu 18.04服务器上使用Docker部署React App时遇到了同样的问题。
问题是我错过了将整个先前版本的内容复制到应用程序的工作目录(/app
)的步骤。
这是我的解决方法:
在RUN npm install
之后和RUN npm run build
步骤之前,在下面添加以下内容:
COPY . ./
我的Dockerfile :
# Set base image
FROM node:latest AS builder
# Set working directory
WORKDIR /app
# Copy package.json and install packages
COPY package.json .
RUN npm install
# Copy other project files and build
COPY . ./
RUN npm run build
# Set nginx image
FROM nginx:latest
# Nginx config
RUN rm -rf /etc/nginx/conf.d/default.conf
COPY ./nginx/default.conf /etc/nginx/conf.d/default.conf
# Static build
COPY --from=builder /app/public /usr/share/nginx/html
# Set working directory
WORKDIR /usr/share/nginx/html
# Start Nginx server
CMD ["/bin/bash", "-c", "nginx -g \"daemon off;\""]
我的docker-compose文件:
version: "3"
services:
web:
image: my_app-frontend
build:
context: .
dockerfile: Dockerfile
environment:
REACT_APP_API_URL: ${REACT_APP_API_URL}
expose:
- "3000"
restart: always
volumes:
- .:/app
用于提供静态文件的Nginx :
创建一个名为nginx
的目录,然后在该目录下创建一个名为default.conf
的文件。该文件将具有以下配置:
server {
listen 80;
add_header Cache-Control no-cache;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
try_files $uri $uri/ /index.html;
expires -1;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
}
我的.env
创建一个.env
文件,您将在其中存储环境变量:
REACT_APP_API_URL=https://my_api
就是这样。
我希望这会有所帮助
答案 2 :(得分:0)
我做了一个明确的COPY ./public/index.html,这个问题消失了 但是为index.js和index.css生成了类似的错误。 对这些做同样的事情就解决了。