testcontainers_compose 1.0.12
testcontainers_compose: ^1.0.12 copied to clipboard
Docker Compose support for the testcontainers Dart library
example/example.dart
import 'package:testcontainers_compose/testcontainers_compose.dart';
void main() async {
await DockerCompose.use(
DockerCompose(context: 'example/fixtures'),
(compose) async {
final web = compose.container('web');
final port = await web.exposedPort(8080);
// make HTTP requests to localhost:port
assert(port > 0);
},
);
}