https://github.com/romnn/testcontainers-rs
testcontainers in Rust (WIP)
https://github.com/romnn/testcontainers-rs
Last synced: 3 months ago
JSON representation
testcontainers in Rust (WIP)
- Host: GitHub
- URL: https://github.com/romnn/testcontainers-rs
- Owner: romnn
- License: mit
- Created: 2022-11-05T20:25:04.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-11-28T11:35:16.000Z (about 3 years ago)
- Last Synced: 2024-12-30T16:03:03.124Z (about 1 year ago)
- Language: Rust
- Homepage:
- Size: 51.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## testcontainers-rs
#### Examples
```bash
RUST_LOG=debug cargo run --example custom
```
#### Linting
```bash
cargo clippy --tests --benches --examples --all-features -- -Dclippy::all -Dclippy::pedantic
```
#### Goals
- use a killer pod that avoids dangling containers just like the [golang implementation]()
- safety: no panics or unsafe code
- build on top of `bollard` exclusively
- API inspired by the [golang implementation]()
- expose native docker container to allow flexibility for users
#### TODO
- implement a working example for the initial release version