Skip to content

Commit

Permalink
Deployed 6076948 with MkDocs version: 1.5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Unknown committed May 3, 2024
1 parent 126c7a3 commit f576a59
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 80 deletions.
61 changes: 6 additions & 55 deletions nextflow-upload-docker/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -899,30 +899,10 @@
</li>

<li class="md-nav__item">
<a href="#preparing-to-push-your-docker-image" class="md-nav__link">
Preparing to push your Docker image
</a>

<nav class="md-nav" aria-label="Preparing to push your Docker image">
<ul class="md-nav__list">

<li class="md-nav__item">
<a href="#if-you-already-built-a-local-docker-image-tag-your-docker-image" class="md-nav__link">
If you already built a local Docker image: Tag your Docker image
<a href="#preparing-to-push-your-docker-image-tag-your-docker-image" class="md-nav__link">
Preparing to push your Docker image: Tag your Docker image
</a>

</li>

<li class="md-nav__item">
<a href="#if-you-need-to-build-your-docker-image" class="md-nav__link">
If you need to build your Docker image:
</a>

</li>

</ul>
</nav>

</li>

<li class="md-nav__item">
Expand Down Expand Up @@ -1134,30 +1114,10 @@
</li>

<li class="md-nav__item">
<a href="#preparing-to-push-your-docker-image" class="md-nav__link">
Preparing to push your Docker image
</a>

<nav class="md-nav" aria-label="Preparing to push your Docker image">
<ul class="md-nav__list">

<li class="md-nav__item">
<a href="#if-you-already-built-a-local-docker-image-tag-your-docker-image" class="md-nav__link">
If you already built a local Docker image: Tag your Docker image
</a>

</li>

<li class="md-nav__item">
<a href="#if-you-need-to-build-your-docker-image" class="md-nav__link">
If you need to build your Docker image:
<a href="#preparing-to-push-your-docker-image-tag-your-docker-image" class="md-nav__link">
Preparing to push your Docker image: Tag your Docker image
</a>

</li>

</ul>
</nav>

</li>

<li class="md-nav__item">
Expand Down Expand Up @@ -1246,10 +1206,8 @@ <h3 id="authenticate-docker-to-ecr"><strong>Authenticate Docker to ECR</strong><
<p>Next, use the AWS CLI to retrieve an authentication token and authenticate your Docker client to your registry. In the credentials, there is a command below the line "After setting credentials you will need to log in to your docker registry. Please run the following command:". Copy that (it will look similar to the command below) and run it in the terminal.</p>
<pre><code> aws ecr get-login-password --region &lt;region&gt; | docker login --username AWS --password-stdin &lt;repositoryUri&gt;
</code></pre>
<h2 id="preparing-to-push-your-docker-image"><strong>Preparing to push your Docker image</strong><a class="headerlink" href="#preparing-to-push-your-docker-image" title="Permanent link"></a></h2>
<p>The specific steps you use to prepare to push your image depends on whether you have an image already built or if you will need to build from a Dockerfile.</p>
<h3 id="if-you-already-built-a-local-docker-image-tag-your-docker-image"><strong>If you already built a local Docker image: Tag your Docker image</strong><a class="headerlink" href="#if-you-already-built-a-local-docker-image-tag-your-docker-image" title="Permanent link"></a></h3>
<p>If you already have a locally-built Docker image, you will not need to run the <code>docker build</code> command included in the credentials. But, you do need to tag it with the ECR repository URI and the image tag you want to use. <em>This command is not in the credentials file.</em> </p>
<h2 id="preparing-to-push-your-docker-image-tag-your-docker-image"><strong>Preparing to push your Docker image: Tag your Docker image</strong><a class="headerlink" href="#preparing-to-push-your-docker-image-tag-your-docker-image" title="Permanent link"></a></h2>
<p>You should already have a <a href="../nextflow-create-docker/">locally-built Docker image</a> before you get your credentials. But, you do need to tag it with the ECR repository URI and the image tag you want to use. </p>
<pre><code> docker tag &lt;local-image&gt;:&lt;local-tag&gt; &lt;repositoryUri&gt;:&lt;image-tag&gt;
</code></pre>
<p>Replace <code>&lt; local-image &gt;</code> with the name of your local Docker image and <code>&lt; local-tag &gt;</code> with the tag you want to push.</p>
Expand All @@ -1264,13 +1222,6 @@ <h3 id="if-you-already-built-a-local-docker-image-tag-your-docker-image"><strong
If you do not want to overwrite, you can use versioned image-tags. For example: <code>batch-poc-1.0</code>, and then <code>batch-poc-1.1</code>.<br>
If you want to replace previous versions of your container, you can use the same image-tag. </p>
</blockquote>
<h3 id="if-you-need-to-build-your-docker-image"><strong>If you need to build your Docker image:</strong><a class="headerlink" href="#if-you-need-to-build-your-docker-image" title="Permanent link"></a></h3>
<p>If you haven't already built your Docker image, you can use the <code>docker build</code> command that is included in your credentials, similar to what is shown below. Note that you should run this command from the directory holding your Dockerfile. You will need to replace the <code>&lt; tag &gt;</code> in your command with the image tag name you want to use in your ECR. (Read more about image tags in the previous section.)</p>
<pre><code> docker build -t &lt;repositoryUri&gt;:&lt;tag&gt;
</code></pre>
<blockquote>
<p>If you use this <code>docker build</code> command from your credentials, you do not need to use the <code>docker tag</code> command (described in the previous section). </p>
</blockquote>
<h2 id="push-the-docker-image-to-the-ecr"><strong>Push the Docker image to the ECR</strong><a class="headerlink" href="#push-the-docker-image-to-the-ecr" title="Permanent link"></a></h2>
<p>Push the tagged image to the ECR repository. The <code>docker push</code> command is also in the credentials - you just need to specify the image tag you selected when either tagging or building the image in the previous section. </p>
<pre><code> docker push &lt;repositoryUri&gt;:&lt;image-tag&gt;
Expand Down
2 changes: 1 addition & 1 deletion search/search_index.json

Large diffs are not rendered by default.

48 changes: 24 additions & 24 deletions sitemap.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,122 +2,122 @@
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>https://brh.data-commons.org/</loc>
<lastmod>2024-05-02</lastmod>
<lastmod>2024-05-03</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://brh.data-commons.org/01-home/</loc>
<lastmod>2024-05-02</lastmod>
<lastmod>2024-05-03</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://brh.data-commons.org/02-types_of_shared_data/</loc>
<lastmod>2024-05-02</lastmod>
<lastmod>2024-05-03</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://brh.data-commons.org/03-data_and_repos/</loc>
<lastmod>2024-05-02</lastmod>
<lastmod>2024-05-03</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://brh.data-commons.org/04-BRH_overview/</loc>
<lastmod>2024-05-02</lastmod>
<lastmod>2024-05-03</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://brh.data-commons.org/05-workspace_registration/</loc>
<lastmod>2024-05-02</lastmod>
<lastmod>2024-05-03</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://brh.data-commons.org/06-loginoverview/</loc>
<lastmod>2024-05-02</lastmod>
<lastmod>2024-05-03</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://brh.data-commons.org/07-how_to_check_request_access/</loc>
<lastmod>2024-05-02</lastmod>
<lastmod>2024-05-03</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://brh.data-commons.org/08-discovery_page/</loc>
<lastmod>2024-05-02</lastmod>
<lastmod>2024-05-03</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://brh.data-commons.org/09-workspace_page/</loc>
<lastmod>2024-05-02</lastmod>
<lastmod>2024-05-03</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://brh.data-commons.org/10-profile_page/</loc>
<lastmod>2024-05-02</lastmod>
<lastmod>2024-05-03</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://brh.data-commons.org/11-downloading_data_files/</loc>
<lastmod>2024-05-02</lastmod>
<lastmod>2024-05-03</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://brh.data-commons.org/12-contact/</loc>
<lastmod>2024-05-02</lastmod>
<lastmod>2024-05-03</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://brh.data-commons.org/13-workspace_accounts/</loc>
<lastmod>2024-05-02</lastmod>
<lastmod>2024-05-03</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://brh.data-commons.org/14-lauch_with_persistent_paymodel/</loc>
<lastmod>2024-05-02</lastmod>
<lastmod>2024-05-03</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://brh.data-commons.org/15-monitor_compute_usage/</loc>
<lastmod>2024-05-02</lastmod>
<lastmod>2024-05-03</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://brh.data-commons.org/16-usage_exceeds_funding/</loc>
<lastmod>2024-05-02</lastmod>
<lastmod>2024-05-03</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://brh.data-commons.org/17-workspace_faq/</loc>
<lastmod>2024-05-02</lastmod>
<lastmod>2024-05-03</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://brh.data-commons.org/nextflow-create-docker/</loc>
<lastmod>2024-05-02</lastmod>
<lastmod>2024-05-03</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://brh.data-commons.org/nextflow-getting-started/</loc>
<lastmod>2024-05-02</lastmod>
<lastmod>2024-05-03</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://brh.data-commons.org/nextflow-overview-containers/</loc>
<lastmod>2024-05-02</lastmod>
<lastmod>2024-05-03</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://brh.data-commons.org/nextflow-request-creds/</loc>
<lastmod>2024-05-02</lastmod>
<lastmod>2024-05-03</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://brh.data-commons.org/nextflow-tutorial-workflows/</loc>
<lastmod>2024-05-02</lastmod>
<lastmod>2024-05-03</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://brh.data-commons.org/nextflow-upload-docker/</loc>
<lastmod>2024-05-02</lastmod>
<lastmod>2024-05-03</lastmod>
<changefreq>daily</changefreq>
</url>
</urlset>
Binary file modified sitemap.xml.gz
Binary file not shown.

0 comments on commit f576a59

Please sign in to comment.