问题是API和前端没有链接。
当我启动nginx容器时,我能够使用--link
命令。但我仍然需要编辑我的nginx.conf。
目前我有
worker_processes 4;
events { worker_connections 1024; }
http {
upstream node-app {
least_conn;
server nodejs:8888 weight=10 max_fails=3 fail_timeout=30s;
}
server {
listen 80;
location / {
proxy_pass http://node-app;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';
proxy_set_header Host $host;
proxy_cache_bypass $http_upgrade;
}
}
}
我的nodejs容器有--name
nodejs,它在端口8888(-p 8888:8888
)上运行
它的dockerfile如下所示:
FROM node
# Create app directory
RUN mkdir -p /usr/src/www
WORKDIR /usr/src/www
# copy
COPY node_modules /usr/src/www/node_modules
COPY gulpfile.js /usr/src/www/gulpfile.js
COPY gulp.config.js /usr/src/www/gulp.config.js
COPY server.js /usr/src/www/server.js
EXPOSE 8080
CMD [ "node", "server.js" ]
我通过执行:
开始docker run -d -p 8888:8888 --name nodejs localhost:5000/test/nodejs-image:1
我可以在localhost上访问我的api:8888 / api
这是nginx的dockerfile(dist是在npm install之后为angular创建的)
FROM nginx
COPY dist /usr/share/nginx/html/dist
当我刚刚表演时:
docker run -d -p 80:80 --name nginx localhost:5000/test/nginx-image:1
我能够访问localhost上的静态文件:80 / dist /...
但我必须链接两个容器+更改nginx.conf:
docker run -d -p 80:80 --name nginx --link nodejs:nodejs -v $(pwd)/nginx.conf:/etc/nginx/nginx.conf localhost:5000/test/nginx-image:1
我的server.js包含以下内容:
app.post('/api/login', requestProxy({
url: xxx + "/login"
}));
有人可以修复我的nginx.conf还是有其他错误?
答案 0 :(得分:0)
一个变化: 在您的nginx.conf中,将 proxy_pass http://node-app 更改为 proxy_pass http://nodejs:8888
链接你的conatiner " - link nodejs:nodejs" docker使用" conatiner_name container_ip"在/ etc / hosts文件中创建和输入,所以您可以使用其名称到达(ping)链接容器。