You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/modules/docker_compose.md
+7-1Lines changed: 7 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -112,7 +112,13 @@ public static DockerComposeContainer environment =
112
112
113
113
You can override Testcontainers' default behaviour and make it use a `docker-compose` binary installed on the local machine.
114
114
This will generally yield an experience that is closer to running docker-compose locally, with the caveat that Docker Compose needs to be present on dev and CI machines.
115
-
115
+
```java
116
+
public static DockerComposeContainer environment =
117
+
new DockerComposeContainer(new File("src/test/resources/compose-test.yml"))
0 commit comments