我很难从开发中的Ghost映像运行容器(在CryptoIndexValue.order(:index_date).find_by('index_date > ?', DateTime.now - 24.hours)
之后)。
使用:
docker pull ghost
似乎在开发中启动容器,但是当我导航到浏览器中的页面时,我得到了
localhost没有发送任何数据。 ERR_EMPTY_RESPONSE
我已经尝试过这样做,但似乎直到最近开发才是默认环境。我不确定在哪里继续。
答案 0 :(得分:0)
根据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