Class ImagePuller
java.lang.Object
com.github.cowwoc.docker.resource.ImagePuller
-
Method Summary
Modifier and TypeMethodDescriptioncredentials
(String username, String password) Sets the registry credentials.credentials
(String username, String password, String email, String serverAddress) Sets the registry credentials.Sets the platform to pull.pull()
Pulls the image from the remote repository.toString()
-
Method Details
-
platform
Sets the platform to pull.- Parameters:
platform
- the platform of the image- Returns:
- this
- Throws:
NullPointerException
- ifplatform
is nullIllegalArgumentException
- ifplatform
contains leading or trailing whitespace or is empty
-
credentials
Sets the registry credentials.- Parameters:
username
- the user's namepassword
- the user's password- Returns:
- this
- Throws:
NullPointerException
- if any of the arguments are nullIllegalArgumentException
- if any of the arguments contain leading or trailing whitespace or are empty
-
credentials
public ImagePuller credentials(String username, String password, String email, String serverAddress) Sets the registry credentials.- Parameters:
username
- the user's namepassword
- the user's passwordemail
- (optional) the user's email address, or an empty string if absentserverAddress
- (optional) the name of the registry server, or an empty string if absent- Returns:
- this
- Throws:
NullPointerException
- if any of the mandatory parameters are nullIllegalArgumentException
- if any of the arguments contain leading or trailing whitespace or are emptyIllegalStateException
- if the client is closed
-
pull
Pulls the image from the remote repository.- Returns:
- null if the repository does not exist or may require
docker login
- Throws:
IllegalStateException
- if the client is closedIOException
- if an I/O error occurs. These errors are typically transient, and retrying the request may resolve the issue.TimeoutException
- if the request times out before receiving a response. This might indicate network latency or server overload.InterruptedException
- if the thread is interrupted while waiting for a response. This can happen due to shutdown signals.
-
toString
-