Serialized Form
-
Package io.fabric8.maven.docker.access
-
Class io.fabric8.maven.docker.access.DockerAccessException extends IOException implements Serializable
-
Class io.fabric8.maven.docker.access.ExecException extends Exception implements Serializable
-
-
Package io.fabric8.maven.docker.access.hc.http
-
Class io.fabric8.maven.docker.access.hc.http.HttpRequestException extends IOException implements Serializable
-
-
Package io.fabric8.maven.docker.access.log
-
Class io.fabric8.maven.docker.access.log.LogCallback.DoneException extends Exception implements Serializable
-
-
Package io.fabric8.maven.docker.config
-
Class io.fabric8.maven.docker.config.Arguments extends Object implements Serializable
-
Serialized Fields
-
exec
List<String> exec
-
execInlined
List<String> execInlined
Used to distinguish between shorter version<cmd> <arg>echo</arg> <arg>Hello, world!</arg> </cmd>from the full one<cmd> <exec> <arg>echo</arg> <arg>Hello, world!</arg> <exec> </cmd>and throw a validation error if both specified. -
shell
String shell
-
-
-
Class io.fabric8.maven.docker.config.AssemblyConfiguration extends Object implements Serializable
-
Serialized Fields
-
basedir
String basedir
Deprecated.Use 'targetDir' instead -
descriptor
String descriptor
-
descriptorRef
String descriptorRef
-
dockerFileDir
String dockerFileDir
Deprecated.UseBuildImageConfiguration.dockerFileDirinstead -
exportBasedir
Boolean exportBasedir
Deprecated. -
exportTargetDir
Boolean exportTargetDir
Whether the target directory should be exported. -
ignorePermissions
Boolean ignorePermissions
Deprecated.use permissionMode == ignore instead. -
inline
org.apache.maven.plugins.assembly.model.Assembly inline
-
mode
AssemblyMode mode
-
name
String name
Name of the assembly which is used also as name of the archive which is created and has to be used when providing an own Dockerfile -
permissions
AssemblyConfiguration.PermissionMode permissions
-
targetDir
String targetDir
New replacement for base directory which better reflects its purpose -
tarLongFileMode
String tarLongFileMode
-
user
String user
-
-
-
Class io.fabric8.maven.docker.config.BuildImageConfiguration extends Object implements Serializable
-
Serialized Fields
-
args
Map<String,String> args
-
assemblies
List<AssemblyConfiguration> assemblies
-
assembly
AssemblyConfiguration assembly
-
buildOptions
Map<String,String> buildOptions
-
cacheFrom
List<String> cacheFrom
-
cleanup
String cleanup
-
cmd
Arguments cmd
-
command
String command
Deprecated. -
compression
ArchiveCompression compression
-
contextDir
String contextDir
Directory is used as build context. If not specified, dockerfile's parent directory is used as build context. -
dockerArchive
String dockerArchive
Path to a docker archive to load an image instead of building from scratch. Note only either dockerFile/dockerFileDir or dockerArchive can be used. -
dockerArchiveFile
File dockerArchiveFile
-
dockerFile
String dockerFile
Path to a dockerfile to use. Multiple different Dockerfiles can be specified that way. If set overwrites a possibly givemdockerFileDir -
dockerFileDir
String dockerFileDir
Deprecated.Directory holding an external Dockerfile which is used to build the image. This Dockerfile will be enriched by the addition build configuration -
dockerFileFile
File dockerFileFile
-
entryPoint
Arguments entryPoint
-
env
Map<String,String> env
-
filter
String filter
How interpolation of a dockerfile should be performed -
from
String from
Base Image -
fromExt
Map<String,String> fromExt
Extended version for -
healthCheck
HealthCheckConfiguration healthCheck
-
imagePullPolicy
String imagePullPolicy
Policy for pulling the base images -
labels
Map<String,String> labels
-
loadNamePattern
String loadNamePattern
Pattern for the image name we expect to find in the dockerArchive. If set, the archive is scanned prior to sending to Docker and checked to ensure a matching name is found linked to one of the images in the archive. After loading, the image with the matching name will be tagged with the image name configured in this project. -
maintainer
String maintainer
-
network
String network
-
nocache
Boolean nocache
Deprecated. -
noCache
Boolean noCache
-
optimise
Boolean optimise
-
ports
List<String> ports
-
registry
String registry
-
runCmds
List<String> runCmds
RUN Commands within Build/Image -
shell
Arguments shell
SHELL excutable with params -
skip
Boolean skip
-
skipPush
Boolean skipPush
-
squash
Boolean squash
-
tags
List<String> tags
-
user
String user
-
volumes
List<String> volumes
-
workdir
String workdir
-
-
-
Class io.fabric8.maven.docker.config.CopyConfiguration extends Object implements Serializable
-
Serialized Fields
-
entries
List<CopyConfiguration.Entry> entries
Items to copy from container.
-
-
-
Class io.fabric8.maven.docker.config.CopyConfiguration.Entry extends Object implements Serializable
-
Serialized Fields
-
containerPath
String containerPath
Full path to container file or container directory which needs to copied. -
hostDirectory
String hostDirectory
Path to a host directory where the files copied from container need to be placed. If relative path is provided then project base directory is considered as a base of that relative path. Can benullmeaning the same as empty string. Note that if containerPath points to a directory, then a directory with the same name will be created in the hostDirectory, i.e. not just content of directory is copied, but the same name directory is created too.
-
-
-
Class io.fabric8.maven.docker.config.DockerMachineConfiguration extends Object implements Serializable
-
Serialized Fields
-
autoCreate
Boolean autoCreate
Should the docker-machine be created if it does not exist? -
createOptions
Map<String,String> createOptions
When creating a docker-machine, the map of createOptions for the driver. Do not include the '--' portion of the option name. For options without values, leave the value text empty. e.g. --virtualbox-cpu-count 1 --virtualbox-no-share would be written as:<virtualbox-cpu-count>1</virtualbox-cpu-count> <virtualbox-no-share/> -
name
String name
Name of the docker-machine -
regenerateCertsAfterStart
Boolean regenerateCertsAfterStart
Should the docker-machine's certificates be regenerated after starting?
-
-
-
Class io.fabric8.maven.docker.config.HealthCheckConfiguration extends Object implements Serializable
-
Class io.fabric8.maven.docker.config.ImageConfiguration extends Object implements Serializable
-
Serialized Fields
-
alias
String alias
-
build
BuildImageConfiguration build
-
copy
CopyConfiguration copy
-
copyNamePattern
String copyNamePattern
Pattern for the name of containers used byCopyMojo. -
external
Map<String,String> external
-
name
String name
-
registry
String registry
-
removeNamePattern
String removeNamePattern
-
run
RunImageConfiguration run
-
stopNamePattern
String stopNamePattern
-
watch
WatchImageConfiguration watch
-
-
-
Class io.fabric8.maven.docker.config.LogConfiguration extends Object implements Serializable
-
Class io.fabric8.maven.docker.config.LogConfiguration.LogDriver extends Object implements Serializable
-
Class io.fabric8.maven.docker.config.NetworkConfig extends Object implements Serializable
-
Serialized Fields
-
aliases
List<String> aliases
-
mode
NetworkConfig.Mode mode
-
name
String name
-
-
-
Class io.fabric8.maven.docker.config.RegistryAuthConfiguration extends Object implements Serializable
-
Class io.fabric8.maven.docker.config.RestartPolicy extends Object implements Serializable
-
Serialized Fields
-
name
String name
-
retry
int retry
-
-
-
Class io.fabric8.maven.docker.config.RunImageConfiguration extends Object implements Serializable
-
Serialized Fields
-
autoRemove
Boolean autoRemove
-
capAdd
List<String> capAdd
-
capDrop
List<String> capDrop
-
cmd
Arguments cmd
-
containerNamePattern
String containerNamePattern
A pattern to define the naming of the container where - %a for the "alias" mode - %n for the image name - %t for a timestamp - %i for an increasing index of container names -
cpus
Long cpus
-
cpuSet
String cpuSet
-
cpuShares
Long cpuShares
-
dependsOn
List<String> dependsOn
-
dns
List<String> dns
-
dnsSearch
List<String> dnsSearch
-
domainname
String domainname
-
entrypoint
Arguments entrypoint
Deprecated.This field would be removed in upcoming releases. UseentryPointinstead.container entry point -
entryPoint
Arguments entryPoint
-
env
Map<String,String> env
Environment variables to set when starting the container. key: variable name, value: env value -
envPropertyFile
String envPropertyFile
-
exposedPropertyKey
String exposedPropertyKey
Property key part used to expose the container ip when running. -
extraHosts
List<String> extraHosts
-
hostname
String hostname
-
imagePullPolicy
String imagePullPolicy
Policy for pulling the image to start -
isolation
String isolation
-
labels
Map<String,String> labels
-
links
List<String> links
-
log
LogConfiguration log
-
memory
Long memory
-
memorySwap
Long memorySwap
-
namingStrategy
RunImageConfiguration.NamingStrategy namingStrategy
Deprecated. -
net
String net
-
network
NetworkConfig network
-
portPropertyFile
String portPropertyFile
-
ports
List<String> ports
-
privileged
Boolean privileged
-
readOnly
Boolean readOnly
-
restartPolicy
RestartPolicy restartPolicy
-
securityOpts
List<String> securityOpts
-
shmSize
Long shmSize
-
skip
Boolean skip
-
stopMode
StopMode stopMode
-
tmpfs
List<String> tmpfs
-
ulimits
List<UlimitConfig> ulimits
-
user
String user
-
volumes
RunVolumeConfiguration volumes
-
wait
WaitConfiguration wait
-
workingDir
String workingDir
-
-
-
Class io.fabric8.maven.docker.config.RunVolumeConfiguration extends Object implements Serializable
-
Class io.fabric8.maven.docker.config.UlimitConfig extends Object implements Serializable
-
Class io.fabric8.maven.docker.config.VolumeConfiguration extends Object implements Serializable
-
Class io.fabric8.maven.docker.config.WaitConfiguration extends Object implements Serializable
-
Serialized Fields
-
exec
WaitConfiguration.ExecConfiguration exec
-
exit
Integer exit
-
healthy
Boolean healthy
-
http
WaitConfiguration.HttpConfiguration http
-
kill
Integer kill
-
log
String log
-
shutdown
Integer shutdown
-
tcp
WaitConfiguration.TcpConfiguration tcp
-
time
Integer time
-
url
String url
Deprecated.Usurl></url></http> instead
-
-
-
Class io.fabric8.maven.docker.config.WaitConfiguration.ExecConfiguration extends Object implements Serializable
-
Class io.fabric8.maven.docker.config.WaitConfiguration.HttpConfiguration extends Object implements Serializable
-
Class io.fabric8.maven.docker.config.WaitConfiguration.TcpConfiguration extends Object implements Serializable
-
Serialized Fields
-
host
String host
-
mode
WaitConfiguration.TcpConfigMode mode
-
ports
List<Integer> ports
-
-
-
Class io.fabric8.maven.docker.config.WatchImageConfiguration extends Object implements Serializable
-
-
Package io.fabric8.maven.docker.config.handler
-
Class io.fabric8.maven.docker.config.handler.ExternalConfigHandlerException extends RuntimeException implements Serializable
- serialVersionUID:
- -2742743075207582636L
-
-
Package io.fabric8.maven.docker.model
-
Class io.fabric8.maven.docker.model.PortBindingException extends RuntimeException implements Serializable
-
-
Package io.fabric8.maven.docker.service
-
Class io.fabric8.maven.docker.service.BuildService.BuildContext extends Object implements Serializable
-
Serialized Fields
-
buildArgs
Map<String,String> buildArgs
-
mojoParameters
MojoParameters mojoParameters
-
registryConfig
RegistryService.RegistryConfig registryConfig
-
-
-
Class io.fabric8.maven.docker.service.DockerAccessFactory.DockerAccessContext extends Object implements Serializable
-
Serialized Fields
-
certPath
String certPath
-
dockerHost
String dockerHost
-
dockerHostProviders
List<DockerConnectionDetector.DockerHostProvider> dockerHostProviders
-
log
Logger log
-
machine
DockerMachineConfiguration machine
-
maxConnections
int maxConnections
-
minimalApiVersion
String minimalApiVersion
-
projectProperties
Properties projectProperties
-
skipMachine
boolean skipMachine
-
-
-
Class io.fabric8.maven.docker.service.RegistryService.RegistryConfig extends Object implements Serializable
-
Serialized Fields
-
authConfig
Map authConfig
-
authConfigFactory
AuthConfigFactory authConfigFactory
-
registry
String registry
-
settings
org.apache.maven.settings.Settings settings
-
skipExtendedAuth
boolean skipExtendedAuth
-
-
-
Class io.fabric8.maven.docker.service.WatchService.WatchContext extends Object implements Serializable
-
Serialized Fields
-
autoCreateCustomNetworks
boolean autoCreateCustomNetworks
-
buildTimestamp
Date buildTimestamp
-
containerNamePattern
String containerNamePattern
-
containerRestarter
Task<WatchService.ImageWatcher> containerRestarter
-
follow
boolean follow
-
gavLabel
GavLabel gavLabel
-
imageCustomizer
Task<ImageConfiguration> imageCustomizer
-
keepContainer
boolean keepContainer
-
keepRunning
boolean keepRunning
-
mojoParameters
MojoParameters mojoParameters
-
removeVolumes
boolean removeVolumes
-
showLogs
String showLogs
-
watchInterval
int watchInterval
-
watchMode
WatchMode watchMode
-
watchPostExec
String watchPostExec
-
watchPostGoal
String watchPostGoal
-
-
-
-
Package io.fabric8.maven.docker.wait
-
Class io.fabric8.maven.docker.wait.PreconditionFailedException extends Exception implements Serializable
-
Serialized Fields
-
waited
long waited
-
-
-
Class io.fabric8.maven.docker.wait.WaitTimeoutException extends TimeoutException implements Serializable
-
Serialized Fields
-
waited
long waited
-
-
-