Skip to content
Snippets Groups Projects
Commit a28fcc41 authored by Stefano Alberto Russo's avatar Stefano Alberto Russo
Browse files

Disabled "docker_local" registry when adding containers.

parent f0ab8430
No related branches found
No related tags found
No related merge requests found
......@@ -41,7 +41,6 @@
<tr>
<td><b>Registry</b></td><td>
<select name="container_registry" >
<option value="docker_local" selected>Docker Local</option>
<option value="docker_hub">Docker Hub</option>
<option value="singularity_hub">Singularity Hub</option>
</select>
......
......@@ -19,7 +19,7 @@ logger = logging.getLogger(__name__)
# Conf
SUPPORTED_CONTAINER_TYPES = ['docker', 'singularity']
SUPPORTED_REGISTRIES = ['docker_local', 'docker_hub', 'singularity_hub']
SUPPORTED_REGISTRIES = ['docker_hub', 'singularity_hub'] # Registry "docker_local" is also supported but must be set manually
UNSUPPORTED_TYPES_VS_REGISTRIES = ['docker:singularity_hub']
# Task cache
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment