问题标签 [sbt-docker]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
scala - Can't resolve docker related sbt tags
I'm trying to add sbt-docker to my sbt build of my play website but I'm running into an issue. For some reason none of the docker related stuff on the bottom can resolve.
project/plugins.sbt
build.sbt
Here's an image of what it looks like in IntelliJ
I've also tried adding addSbtPlugin("se.marcuslonnberg" % "sbt-docker" % "1.4.0")
to my project/plugins.sbt
but I get this error about DockerPlugin
being imported twice.
docker - 使用 docker sbt 的多模块项目中未指定用于发布的存储库
我正在尝试使用 sbt-docker 插件部署一个多模块项目。我想为 api 和 app 模块创建单独的容器并跳过其他模块。但是,每次我运行时docker: publish
都会出现这样的错误:
这是我的 build.sbt 文件:
对于如何修复我的 build.sbt 文件以将其发布到 docker hub 的任何建议,我将不胜感激!
docker - 使用 sbt 将目录添加到 docker 映像中(在 Lagom 1.4 上)
有人可以帮助如何将文件系统文件夹添加到 docker 映像中...例如,我想将 /opt/app/conf 添加到路径 /opt/docker/conf 的 docker 映像中。build.sbt 的片段如下:
scala - 用于从纯 Docker 文本文件创建图像的 SBT 插件
我想为纯 Dockerfile 文本构建图像,是否有 SBT 插件可以让我指定自己的 docker 文件。
playframework - 播放 / Scala / sbt: docker:publichLocal 和特定的 .conf 文件
我徒劳地尝试使用命令“sbt docker:publishLocal”从 sbt-native-packager 部署和运行我的 play 应用程序,并在 Docker 上使用特定的 .conf 文件。
这样的命令有效,图像被创建,它的容器是可执行的。创建的映像包含所有 .conf 文件。- 但它不采用它应该采用的 .conf 文件。
在build.sbt我尝试了以下内容:
以下命令也不成功:"sbt -Dconfig.resource=application.test.conf docker:publishLocal"
.
不幸的是,我没有更多的想法来解决这个问题,如果有任何帮助,我将不胜感激!
谢谢!