[][src]Enum the_process_foundry::applications::docker_compose::application::CliActions

pub enum CliActions {
    Build,
    Config,
    Create,
    Down,
    Events,
    Exec,
    Help,
    Images,
    Kill,
    Logs,
    Pause,
    Port,
    Ps,
    Pull,
    Push,
    Restart,
    Rm,
    Run,
    Scale,
    Start,
    Stop,
    Top,
    UnPause,
    Up,
    Version,
}

Variants

Build

Build or rebuild services

Config

Validate and view the Compose file

Create

Create services

Down

Stop and remove containers, networks, images, and volumes

Events

Receive real time events from containers

Exec

Execute a command in a running container

Help

Get help on a command

Images

List images

Kill

Kill containers

Logs

View output from containers

Pause

Pause services

Port

Print the public port for a port binding

Ps

List containers

Pull

Pull service images

Push

Push service images

Restart

Restart services

Rm

Remove stopped containers

Run

Run a one-off command

Scale

Set number of containers for a service

Start

Start services

Stop

Stop services

Top

Display the running processes

UnPause

Un-pause services

Up

Create and start containers

Version

Show the Docker-Compose version information

Auto Trait Implementations

impl RefUnwindSafe for CliActions

impl Send for CliActions

impl Sync for CliActions

impl Unpin for CliActions

impl UnwindSafe for CliActions

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,