Closed ajeecai closed 4 years ago
Issue-Label Bot is automatically applying the label bug
to this issue, with a confidence of 0.72. Please mark this comment with :thumbsup: or :thumbsdown: to give our bot feedback!
Links: app homepage, dashboard and code for this bot.
你直接在 web 项目下 dotnet run
可以吗? 感觉可能是你的网络不太好,默认启动的时候会去连国际版的 Azure 去拿一些配置信息,看错误是连接不上 azure key vault
对dotnet不熟悉,没有dotnet环境,所以直接用docker来运行...为何需要去Azure上拿配置,可以让用户自己配置或者hardcode在代码里面吗?换了一台云服务器试验,也是同样的错误。
可以自己挂载配置文件,但是还有一些外部依赖,如 redis/es,想直接跑的话可以用单机版
docker run -d -p 8900:80 --name=reservation weihanli/activityreservation:standalone
详细参考:https://github.com/WeihanLi/ActivityReservation/blob/dev/docs/deploy/standalone.md
@ajeecai
添加了 docker-compose,你可以克隆下来代码之后,直接在项目根目录下跑 docker-compose up
命令来启动
注:如果本地有redis 或 es 可能需要检查端口会不会冲突,container 名称是否冲突等
启动成功之后,在浏览器中打开: http://localhost:9080/Home/Notice 如果修改了端口,改成自己的端口即可看到网站的效果
git clone 项目,然后在项目根目录下sudo docker build -t booking:1 . ,完成之后,