Skip to content

Commit

Permalink
Merge pull request #5350 from galaxyproject/roborovski-symmetric
Browse files Browse the repository at this point in the history
temporarily hide docker images while they aren't updated
  • Loading branch information
shiltemann authored Sep 23, 2024
2 parents f08c1a9 + 5767a19 commit e1fe93e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 3 additions & 1 deletion _includes/instance-dropdown.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
{% assign supported_inexactly = own_material.supported_servers.inexact | size %}
{% assign supported = supported_exactly | plus: supported_inexactly %}

{% if supported > 0 or include.docker %}
{% if supported > 0 %}
<a href="#" class="dropdown-toggle" data-toggle="dropdown" aria-expanded="false" title="Where to run the tutorial">
{% icon instances %}{% if include.label %}&nbsp;{{ locale['supporting-galaxies'] | default: "Available on these Galaxies" }} {% endif %}
</a>
Expand Down Expand Up @@ -44,6 +44,7 @@
{% endfor %}
{% endif %}

<!--
{% if include.docker %}
<li class="dropdown-header">
Containers
Expand All @@ -54,5 +55,6 @@
</a>
</li>
{% endif %}
-->
</ul>
{% endif %}
2 changes: 2 additions & 0 deletions _layouts/topic.html
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ <h3 id="st-{{ subtopic[0] | slugify }}">{{ subtopic[1].subtopic.title }}</h3>
{{ content }}

{% if topic.type == "use" %}
<!--
<h2 id="docker_image">Galaxy instances</h2>
<p>You can use a public Galaxy instance which has been tested for the availability of the used tools. They are listed along with the tutorials above.</p>
{% if topic.docker_image and topic.docker_image != "" %}
Expand All @@ -71,6 +72,7 @@ <h2 id="docker_image">Galaxy instances</h2>
<p>NOTE: Use the -d flag at the end of the command if you want to automatically download all the data-libraries into the container.</p>
<p>It will launch a flavored Galaxy instance available on <a href="http://localhost:8080">http://localhost:8080</a>. This instance will contain all the tools and workflows to follow the tutorials in this topic. Login as <b>admin</b> with password <b>password</b> to access everything.</p>
{% endif %}
-->
{% endif %}

{% unless topic.tag_based %}
Expand Down

0 comments on commit e1fe93e

Please sign in to comment.