-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
1 parent
cc5549e
commit 50f5673
Showing
3 changed files
with
74 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 12 additions & 0 deletions
12
...e/src/main/java/com/odysseusinc/arachne/executionengine/execution/r/DockerPullPolicy.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
package com.odysseusinc.arachne.executionengine.execution.r; | ||
|
||
public enum DockerPullPolicy { | ||
/** Never pull any images. If image does not exist in local registry, fail analysis. */ | ||
NEVER, | ||
/** If image exists in local repository, use it. Do not check for updated image. Pull if image is missing.*/ | ||
MISSING, | ||
/** Always attempt to pull. If pull failed but image exists in local repository, proceed with that image. */ | ||
ALWAYS, | ||
/** Always attempt to pull. If pull fails, analysis will fail as well, even if local image exists. */ | ||
FORCE, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters