我在我的服务器基础设施中使用了 docker、Marathon 和 Mesos。我想更改 Marathon UI 中的一些内容。可能吗?如果是,那么我可以从哪里找到已安装的 Marathon UI 代码库。?
问问题
55 次
1 回答
0
Marathon 在 GitHub 上是开源的,因此您可以拉取源代码,按照自己的意愿更改它,然后自己构建它,进行定制。
UI 甚至是一个单独的 GitHub 项目,因此您可以单独更改它。
https://github.com/mesosphere/marathon https://github.com/mesosphere/marathon-ui/tree/master/src
Github 上的 Marathon 自述文件有从源代码构建的说明:
“要从源代码构建 Marathon,请查看此 repo 和子模块并使用 sbt 构建 JAR:”
git clone --recursive https://github.com/mesosphere/marathon.git
cd marathon
sbt assembly
“运行./bin/build-distribution
以将 Marathon 打包为可执行 JAR(可选)。”
于 2015-07-29T09:00:05.220 回答