无法在Superset上通过Docker安装加载CSS

时间:2019-01-27 22:37:38

标签: superset apache-superset

我按照以下步骤使用Docker安装了超集,但是当我转到http://localhost:8088/superset时,没有CSS。此外,每次我尝试创建图表时,我都会被发送回主页。就像,如果我按下http://localhost:8088/chart/add,我将得到与http://localhost:8088/superset相同的静态界面

我正在尝试在MacBookPro 2018上安装。

链接到我遵循的安装步骤 https://github.com/apache/incubator-superset/blob/master/docs/installation.rst#user-content-start-with-docker

我使用的代码

git clone https://github.com/apache/incubator-superset/

cd incubator-superset/contrib/docker

docker-compose run --rm superset ./docker-init.sh

docker-compose up

2 个答案:

答案 0 :(得分:0)

我安装了Apache Superset版的docker版本,遇到了类似的问题。当我通过运行superset登录docker exec容器时,发现webpack.js需要花一些时间来编译源代码。完成后,它将完美加载。

答案 1 :(得分:0)

有时会花费一些时间来构建superset_node软件包,该软件包负责编译UI组件。为了不用等待就强制建造它们,

docker-compose down
docker-compose build
docker-compose up