This library provides simple functions for starting and stopping containers using Docker.
You must have Docker installed and started
```rust use dockertester::startcontainer;
fn main() { let image = "postgres:latest" let port = "5432" let args = &[ "-e", "POSTGRESUSER=postgres", "-e", "POSTGRESPASSWORD=password" ]; let container = start_container(image, port, args) .expect("Failed to start Postgres contaienr");
assert!(container.id);
assert!(container.host);
assert!(container.port);
} ```
```rust use docker_tester::TestPostgres;
async fn itworks() { let testpostgres = TestPostgres::new("./migrations").await.unwrap(); let pool = testpostgres.getpool().await;
// do something with the pool
// when test_postgres gets dropped, the database will be dropped on Docker
} ```
This project is distributed under the terms of MIT.
See LICENSE for details.
Copyright 2022 startdusk