幽灵conf在docker,ubuntu本地

时间:2017-10-07 14:10:49

标签: ubuntu docker ghost

我正在使用Ubuntu,我正在尝试在Docker中运行Ghost CMS。我正在使用的命令是:

docker run -d --name some-ghost ghost

我已经通过运行检查了该过程:

docker ps

此过程显示为正在运行,但是,当我尝试打开页面http://localhost:2368时,它没有显示任何内容并且给我“无法连接”

提前致谢

1 个答案:

答案 0 :(得分:0)

您缺少port参数,如下所示:

docker run -d --name some-ghost -p 3001:2368 ghost