oxker 0.2.1

A simple tui to view & control docker containers
1
2
3
4
5
6
7
8
9
10
11
12
use crate::app_data::ContainerId;

#[derive(Debug, Clone)]
pub enum DockerMessage {
    Update,
    Start(ContainerId),
    Restart(ContainerId),
    Pause(ContainerId),
    Unpause(ContainerId),
    Stop(ContainerId),
    Quit,
}