sbt-docker-compose icon indicating copy to clipboard operation
sbt-docker-compose copied to clipboard

Integrates Docker Compose functionality into sbt (archived as unmaintained)

Results 18 sbt-docker-compose issues
Sort by recently updated
recently updated
newest added

docker-compose 2.x changed the naming convention for containers: it uses dash `-` to separate the project and container names, instead of underscore `_` that was used in 1.x. As a...

- add a way for getting container ID using v2 API - use container ID through v2 API if legacy API fails to locate that ID - V2 API filtering...

I build the image and run the tests with `dockerComposeTest`: ``` cd basic-with-tests sbt publishLocal sbt dockerComposeTest ``` And I get the following error: ``` Starting Test Pass against a...

Using ScalaTest, I'm trying to run just a subset of my tests by class name. I know I could use tags but that seems redundant for this purpose. Is there...

When I have a module `test-util`, where I define an object `object Util {..}`. then in the `build.sbt` second module I depend on the the first module ``` dependsOn(`test-util`) %...

I have been successfully using sbt-docker-compose to facilitate some testing. Previous sbt version was `1.2.8`, but we are now updating to sbt `1.3.3` with which the `dockerComposeTest` command fails with...

I added the `sbt-docker-compose` dependency ```scala addSbtPlugin("com.tapad" % "sbt-docker-compose" % "1.0.34") ``` but can not find the artifact in any of following plugin repos; - https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.tapad - https://repo.typesafe.com/typesafe/ivy-releases/com.tapad error trace...

`docker-compose` has this option: ``` -p, --project-name NAME Specify an alternate project name (default: directory name) ``` `sbt-docker-compose` generates a random instance name for this option: ``` //Generate random instance...

It is more UX improvement rather than bug. If there is an invalid mapping in `docker-compose.yml`, e.g.: ``` volumes: - vol: # NOTE: it should be simply >vol:< services: #...

If I have a complex `docker-compose.yml` with a lot of services, it's a bit slow to have to run `sbt dockerComposeStop dockerComposeUp` every time I make a code change and...