Package org.wildfly.plugin.provision
Class ApplicationImageInfo
- java.lang.Object
-
- org.wildfly.plugin.provision.ApplicationImageInfo
-
public class ApplicationImageInfo extends Object
This class holds all configuration to build and push application image from theimagegoal.
-
-
Field Summary
Fields Modifier and Type Field Description protected booleanbuildWhether the application image should be built (default istrue).protected StringpasswordThe user password to login to the container registry.protected booleanpushWhether the application image should be pushed (default isfalse).protected StringregistryThe container registry.protected StringuserThe user name to login to the container registry.
-
Constructor Summary
Constructors Constructor Description ApplicationImageInfo()
-
-
-
Field Detail
-
build
protected boolean build
Whether the application image should be built (default istrue).
-
push
protected boolean push
Whether the application image should be pushed (default isfalse).
-
registry
protected String registry
The container registry. If set, the registry is added to the application name. If the image is pushed and the registry is not set, it defaults to "docker.io" to login to the registry.
-
user
protected String user
The user name to login to the container registry.
-
password
protected String password
The user password to login to the container registry.
-
-