Enum docker_pose::Objects
source · pub enum Objects {
Services,
Images {
filter: Option<String>,
remote_tag: Option<String>,
remote_tag_filter: Option<String>,
ignore_unauthorized: bool,
remote_progress: bool,
threads: u8,
},
Depends {
service: String,
},
Volumes,
Networks,
Configs,
Secrets,
Profiles,
Envs {
service: String,
},
}Variants§
Services
List services
Images
Fields
filter: Option<String>filter by a property, if –remote-tag is used as well, this filter is applied first, filtering out images that don’t match the filter. Currently only tag=TAG is supported
remote_tag: Option<String>print with remote tag passed instead of the one set in the file if exists in the docker registry
remote_tag_filter: Option<String>use with –remote-tag to filter which images should be checked whether the remote tag exists or not, but images that don’t match the filter are not filtered out from the list printed, only printed with the tag they have in the compose file. Currently only regex=EXPR or regex!=EXPR are supported
ignore unauthorized errors from docker when fetching remote tags info
List images
Depends
List service’s depends_on
Volumes
List volumes
Networks
List networks
Configs
List configs
Secrets
List secrets
Profiles
List profiles
Envs
List service’s environment variables
Trait Implementations§
source§impl FromArgMatches for Objects
impl FromArgMatches for Objects
source§fn from_arg_matches(__clap_arg_matches: &ArgMatches) -> Result<Self, Error>
fn from_arg_matches(__clap_arg_matches: &ArgMatches) -> Result<Self, Error>
source§fn from_arg_matches_mut(
__clap_arg_matches: &mut ArgMatches
) -> Result<Self, Error>
fn from_arg_matches_mut( __clap_arg_matches: &mut ArgMatches ) -> Result<Self, Error>
source§fn update_from_arg_matches(
&mut self,
__clap_arg_matches: &ArgMatches
) -> Result<(), Error>
fn update_from_arg_matches( &mut self, __clap_arg_matches: &ArgMatches ) -> Result<(), Error>
ArgMatches to self.source§fn update_from_arg_matches_mut<'b>(
&mut self,
__clap_arg_matches: &mut ArgMatches
) -> Result<(), Error>
fn update_from_arg_matches_mut<'b>( &mut self, __clap_arg_matches: &mut ArgMatches ) -> Result<(), Error>
ArgMatches to self.source§impl PartialEq for Objects
impl PartialEq for Objects
source§impl Subcommand for Objects
impl Subcommand for Objects
source§fn augment_subcommands<'b>(__clap_app: Command) -> Command
fn augment_subcommands<'b>(__clap_app: Command) -> Command
source§fn augment_subcommands_for_update<'b>(__clap_app: Command) -> Command
fn augment_subcommands_for_update<'b>(__clap_app: Command) -> Command
source§fn has_subcommand(__clap_name: &str) -> bool
fn has_subcommand(__clap_name: &str) -> bool
Self can parse a specific subcommand