Skip to content

Commit

Permalink
Merge pull request #7896 from mvdbeek/add_local_namespace_cached_reso…
Browse files Browse the repository at this point in the history
…lvers_to_default_resolver

[19.05] Add local namespaced resolver to default container resolvers
  • Loading branch information
jmchilton committed May 6, 2019
2 parents 060a49f + bfdc471 commit 224f573
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lib/galaxy/tools/deps/containers.py
Expand Up @@ -206,7 +206,9 @@ def __default_containers_resolvers(self):
if self.enable_beta_mulled_containers:
default_resolvers.extend([
CachedMulledDockerContainerResolver(self.app_info, namespace="biocontainers"),
CachedMulledDockerContainerResolver(self.app_info, namespace="local"),
CachedMulledSingularityContainerResolver(self.app_info, namespace="biocontainers"),
CachedMulledSingularityContainerResolver(self.app_info, namespace="local"),
MulledDockerContainerResolver(self.app_info, namespace="biocontainers"),
MulledSingularityContainerResolver(self.app_info, namespace="biocontainers"),
BuildMulledDockerContainerResolver(self.app_info),
Expand Down

0 comments on commit 224f573

Please sign in to comment.