我很难从开发中的Ghost镜像运行容器(在docker pull ghost之后)。

使用:

docker run --name some-ghost -p 4000:2368 -v /Users/Documents/ghost-blog/content/themes/:/var/lib/ghost/content/themes/ -e NODE_ENV=development ghost

似乎在开发中启动了容器,但是当我导航到浏览器中的页面时,我得到了



我尝试过查找,但是直到最近,开发似乎还是以前的默认环境。我不太确定从哪里开始。

最佳答案

根据acburdine's answer,您需要指定其他环境变量:
docker run --name some-ghost -p 4000:2368 -v /Users/Documents/ghost-blog/content/themes/:/var/lib/ghost/content/themes/ -e NODE_ENV=development -e server__host=0.0.0.0 -e url="http://localhost:2368" ghost

关于docker - 在开发中使用docker运行ghost的问题,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/45554644/

10-16 12:16