feat: implement all-in-one docker compose

This commit is contained in:
Daniil Polyakov
2026-02-10 00:27:47 +03:00
parent 90c70a7f76
commit f248cf2ae0
24 changed files with 334 additions and 45 deletions
+2 -1
View File
@@ -97,7 +97,8 @@ impl TestContext {
async fn setup_bedrock_node() -> Result<(DockerCompose, SocketAddr)> {
let manifest_dir = env!("CARGO_MANIFEST_DIR");
let bedrock_compose_path = PathBuf::from(manifest_dir).join("bedrock/docker-compose.yml");
let bedrock_compose_path =
PathBuf::from(manifest_dir).join("../bedrock/docker-compose.yml");
let mut compose = DockerCompose::with_auto_client(&[bedrock_compose_path])
.await