A simple way to interact with the Docker Engine API
Install
cargo add docker_engine_api
or add manually into your Cargo.toml
docker_engine_api = "0.1.4"
and then run cargo build
First you should to have Docker installed locally; then you should run library test with the commnad cargo test
(the tests uses the alpine image: docker pull alpine
); if everything goes ok, congratulations you can start to code.
A Client is the main way to connect to Docker Engine API, usually the socket is located in /var/run/docker.sock
.
```rust extern crate dockerengineapi; use crate::dockerengineapi::client::ClientTrait;
fn main() { let mut client = dockerengineapi::new("/var/run/docker.sock".tostring()); match client.ping() { Ok() => {println!("Pong!")}, Err(e) => panic!("Error: {}", e) }; } ```
To fetch containers, provide you with methods to fetch multiple containers, the most primitive and unadapted part is the filters that should be provided as a string, anyways you can check the docs filters.
rust
fn get_containers(&mut self, all: bool, limit: i32, size: bool, filters: String) -> Result<Vec<Container>, Box<dyn std::error::Error + Send + Sync>>
What are those arguments in the function? Check Docker Engine API documentation
rust
match client.get_containers(false, 0, false, "".to_string()) {
Ok(containers) => containers,
Err(e) => panic!("Error: {}", e)
};
For the following example you've already nginx:latest image in your system. For know open a cmd and type docker image ls
, otherwise you can edit the image and use what you want...
In a simple way:
```rust use dockerengineapi::container_create::CreateContainerBody;
let mut options = CreateContainerBody::default(); options.image = "alpine:latest".tostring(); options.cmd = vec!["/bin/true".tostring()];
let response = match client.create_container("test2", "linux", &options) { Ok(response) => response, Err(e) => panic!("Error: {}", e) }; ```
Max customization options:
```rust use dockerengineapi::container_create::CreateContainerBody;
let options = CreateContainerBody { hostname: "localhost".tostring(), domainname: "localhost".tostring(), user: "".tostring(), attachstdin: true, attachstdout: true, attachstderr: true, tty: true, openstdin: true, stdinonce: false, env: vec![], cmd: vec!["echo test'".tostring()], image: "alpine:latest".tostring(), labels: HashMap::new(), volumes: HashMap::new(), workingdir: "".tostring(), entrypoint: "".tostring(), networkdisabled: false, macaddress: "".tostring(), stopsignal: "".tostring(), stoptimeout: 0, hostconfig: HostConfig::default(), networkingconfig: NetworkingConfig::default(), exposedports: HashMap::new(), };
let response = match client.create_container("test", "linux", &options) { Ok(response) => response, Err(e) => panic!("Error: {}", e) }; ```
rust
match client.get_stats_container(container_id, true, false) {
Ok(stats) => {
println!("{:?}", stats);
},
Err(e) => panic!("Error: {}", e)
};
rust
fn inspect_container(&mut self, id: &str) -> Result<NoImplementedYet, Box<dyn std::error::Error + Send + Sync>>
rust
fn start_container(&mut self, id: &str) -> Result<NoImplementedYet, Box<dyn std::error::Error + Send + Sync>>
rust
fn stop_container(&mut self, id: &str, timeout: i32) -> Result<NoImplementedYet, Box<dyn std::error::Error + Send + Sync>>
rust
fn restart_container(&mut self, id: &str) -> Result<NoImplementedYet, Box<dyn std::error::Error + Send + Sync>>
rust
fn remove_container(&mut self, id: &str, remove_associated_volumes: bool, force: bool, remove_specified_linked: bool) -> Result<NoImplementedYet, Box<dyn std::error::Error + Send + Sync>>
rust
fn get_container_logs(&mut self, id: &str) -> Result<GET_CONTAINER_LOGS_RETURN, Box<dyn std::error::Error + Send + Sync>>
rust
fn list_processes(&mut self, id: &str) -> Result<LIST_PROCESSES_RETURN, Box<dyn std::error::Error + Send + Sync>>
rust
fn resize_container_tty(&mut self, id: &str, height: i32, width: i32) -> Result<EmptyOk, Box<dyn std::error::Error + Send + Sync>>
rust
fn pause_container(&mut self, id: &str) -> Result<EmptyOk, Box<dyn std::error::Error + Send + Sync>>
rust
fn unpause_container(&mut self, id: &str) -> Result<EmptyOk, Box<dyn std::error::Error + Send + Sync>>
rust
fn wait_container(&mut self, id: &str, condition: &str) -> Result<EmptyOk, Box<dyn std::error::Error + Send + Sync>>
Would be a pleasure to get you here...