-
Notifications
You must be signed in to change notification settings - Fork 201
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Docker部署后无法访问API端口 #133
Comments
This comment was marked as resolved.
This comment was marked as resolved.
非常抱歉没有注意到相关表述 |
Web页面,修改完源码,得重新构建才生效 |
肯定得把 5000 映射出来,不然外界访问不到。 |
@cxOrz 您好 请问这样是什么问题呢 |
代码重新构建完,重启容器就行了 |
docker拉过来的镜像可以直接重新构建? |
docker attach 进容器,去里面修改、构建代码,代码在 /app 目录下。 |
您好,我使用docker attach进容器的时候会卡住,没反应,这是什么问题 TAT |
使用docker exec -it /bin/bash(有时候使用/bin/sh)试试? |
好的好的 |
关于 Docker 镜像的使用说明,请参考 DockerGuide,感谢 @QLozin 的文档 |
容器启动之后,不需要进入命令行运行什么东西。直接通过 域名/IP:端口 访问页面就行了。 |
哥,我看日志是这种的,他这个localhost跑不起来,我ip直接加进去了,也不行,显示无法访问
…------------------ 原始邮件 ------------------
发件人: "cxOrz/chaoxing-sign-cli" ***@***.***>;
发送时间: 2023年10月7日(星期六) 中午12:33
***@***.***>;
抄送: "Dust ***@***.******@***.***>;
主题: Re: [cxOrz/chaoxing-sign-cli] Docker部署后无法访问API端口 (Issue #133)
容器启动之后,不需要进入命令行运行什么东西。直接通过 域名/IP:端口 访问页面就行了。
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you commented.Message ID: ***@***.***>
|
在云服务器中部署
使用
docker run --name chaoxing -p 5000:5000 gh....
拉起镜像后,再使用Nginx Docker进行反代理,反代理大致如下:
listen 443 ssl;
server_name example.com;
location / {
proxy_pass http://超星容器的网桥IP;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
ssl ....
前端能正常访问但是无法登录
显示是登录的请求使用的是localhost:5000地址,这显然不是正确的
文档中似乎没有说明如何去修改这个,希望得到你的帮助。
The text was updated successfully, but these errors were encountered: