feat: implement all-in-one docker compose

This commit is contained in:
Daniil Polyakov
2026-02-12 16:31:13 +03:00
parent dae1d92253
commit 09debfa74f
24 changed files with 335 additions and 45 deletions
+2 -1
View File
@@ -100,7 +100,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