如何更新 marathon UI 中的 CSS 和链接?

How can I update the CSS and links in marathon UI?

我在服务器基础架构中使用了 docker、Marathon 和 Mesos。我想在 Marathon UI 中改变一些东西。 可能吗?如果是,那么从哪里可以找到 Marathon UI.?

的已安装代码库

Marathon 在 GitHub 上是开源的,因此您可以拉取源代码,根据需要进行更改,然后自己构建,定制。

UI 甚至是一个单独的 GitHub 项目,因此您可以单独更改它。

https://github.com/mesosphere/marathon https://github.com/mesosphere/marathon-ui/tree/master/src

Github 上的 Marathon 自述文件包含从源代码构建的说明:

"To build Marathon from source, check out this repo and submodules and use sbt to build a JAR:"

git clone --recursive https://github.com/mesosphere/marathon.git
cd marathon
sbt assembly

"Run ./bin/build-distribution to package Marathon as an executable JAR (optional)."