Skip to content

Commit

Permalink
docs: Merge pull request #4026 from cardano-foundation/paolino/ADP-3085
Browse files Browse the repository at this point in the history
…/fix-links-to-docker-repository [ADP-3085] Change inputouput to cardanofoundation as docker repository for image… Source commit: bc009dc
  • Loading branch information
Cardano Wallet Documentation Bot committed Jul 7, 2023
1 parent 12251da commit 6b2235c
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 14 deletions.
12 changes: 6 additions & 6 deletions print.html
Original file line number Diff line number Diff line change
Expand Up @@ -1628,10 +1628,10 @@ <h2 id="summary"><a class="header" href="#summary">Summary</a></h2>
<tr><td><a href="https://github.com/cardano-foundation/cardano-wallet">cardano-wallet</a></td><td><a href="https://github.com/cardano-foundation/cardano-wallet/releases">releases</a></td><td>✔️</td><td>✔️</td><td>✔️</td></tr>
</tbody></table>
</div><div style="break-before: page; page-break-before: always;"></div><h1 id="running-with-docker"><a class="header" href="#running-with-docker">Running with Docker</a></h1>
<p>Docker images are continuously built and deployed on <a href="https://hub.docker.com/u/inputoutput">dockerhub</a> under specific tags. Using docker provides <strong>the fastest</strong> and <strong>easiest</strong> user experience for setting up the Cardano stack. You should prefer this solution over building from sources unless you have really good reasons not to. The following images are available for each component of the Adrestia architecture:</p>
<p>Docker images are continuously built and deployed on <a href="https://hub.docker.com/u/cardanofoundation">dockerhub</a> under specific tags. Using docker provides <strong>the fastest</strong> and <strong>easiest</strong> user experience for setting up the Cardano stack. You should prefer this solution over building from sources unless you have really good reasons not to. The following images are available for each component of the Adrestia architecture:</p>
<div class="table-wrapper"><table><thead><tr><th style="text-align: left">Repository</th><th style="text-align: center">Tags</th><th style="text-align: center">Documentation</th></tr></thead><tbody>
<tr><td style="text-align: left"><a href="https://hub.docker.com/r/inputoutput/cardano-node">inputoutput/cardano-node</a></td><td style="text-align: center"><code>master</code>, <code>MAJ.MIN.PATCH</code>, <code>latest</code></td><td style="text-align: center"><a href="https://github.com/input-output-hk/cardano-node/blob/master/nix/docker.nix#L1-L25">link</a></td></tr>
<tr><td style="text-align: left"><a href="https://hub.docker.com/r/inputoutput/cardano-wallet">inputoutput/cardano-wallet</a></td><td style="text-align: center"><code>byron</code>, <code>YYYY.MM.DD-byron</code>, <code>latest</code></td><td style="text-align: center"><a href="user-guide/installation/use-docker.html">Docker</a></td></tr>
<tr><td style="text-align: left">[cardanofoundation/cardano-wallet][cardanofoundation-cardano-wallet]</td><td style="text-align: center"><code>byron</code>, <code>YYYY.MM.DD-byron</code>, <code>latest</code></td><td style="text-align: center"><a href="user-guide/installation/use-docker.html">Docker</a></td></tr>
</tbody></table>
</div>
<h2 id="tag-naming-scheme"><a class="header" href="#tag-naming-scheme">Tag Naming Scheme</a></h2>
Expand All @@ -1646,18 +1646,18 @@ <h3 id="examples-1"><a class="header" href="#examples-1">Examples</a></h3>
<pre><code>&gt; docker pull inputoutput/cardano-node:1.10.0
</code></pre>
<p>Similarly, one can pull <code>cardano-wallet@v2021-08-11</code> with:</p>
<pre><code>&gt; docker pull inputoutput/cardano-wallet:2021.8.11
<pre><code>&gt; docker pull cardanofoundation/cardano-wallet:2021.8.11
</code></pre>
<h3 id="about-version-compatibility"><a class="header" href="#about-version-compatibility">About version compatibility</a></h3>
<p>For version compatibility between components, please refer to compatibility matrix on each component main page
(e.g. <a href="https://github.com/cardano-foundation/cardano-wallet#latest-releases">cardano-wallet</a>).</p>
<h2 id="downloading-the-docker-image"><a class="header" href="#downloading-the-docker-image">Downloading the Docker image</a></h2>
<p>To get the latest release of <code>cardano-wallet</code>, run:</p>
<pre><code>docker pull inputoutput/cardano-wallet:latest
<pre><code>docker pull cardanofoundation/cardano-wallet:latest
</code></pre>
<h2 id="running-the-docker-container-for-cardano-wallet"><a class="header" href="#running-the-docker-container-for-cardano-wallet">Running the Docker container for cardano-wallet</a></h2>
<p>To run basic CLI commands, use:</p>
<pre><code>&gt; docker run --rm inputoutput/cardano-wallet:latest --help
<pre><code>&gt; docker run --rm cardanofoundation/cardano-wallet:latest --help
</code></pre>
<p>See <a href="user-guide/installation/../cli.html">cli</a>
for full documentation of the CLI.</p>
Expand All @@ -1674,7 +1674,7 @@ <h2 id="inspecting-the-contents-of-the-docker-image"><a class="header" href="#in
<p>The default entrypoint of the image is
<code>/bin/start-cardano-wallet-shelley</code>. If you need to run a shell
inside the Docker image, use the bash shell as the entrypoint:</p>
<pre><code>&gt; docker run --rm -it --entrypoint bash inputoutput/cardano-wallet:latest
<pre><code>&gt; docker run --rm -it --entrypoint bash cardanofoundation/cardano-wallet:latest
</code></pre>
<h2 id="docker-compose"><a class="header" href="#docker-compose">Docker compose</a></h2>
<p>One can also use <a href="https://docs.docker.com/compose/">docker-compose</a> to quickly spin up <code>cardano-wallet</code> together with supported block producer. Those are useful for a quick start or as a baseline for development.</p>
Expand Down
2 changes: 1 addition & 1 deletion searchindex.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion searchindex.json

Large diffs are not rendered by default.

12 changes: 6 additions & 6 deletions user-guide/installation/use-docker.html
Original file line number Diff line number Diff line change
Expand Up @@ -148,10 +148,10 @@ <h1 class="menu-title">Cardano Wallet</h1>
<div id="content" class="content">
<main>
<h1 id="running-with-docker"><a class="header" href="#running-with-docker">Running with Docker</a></h1>
<p>Docker images are continuously built and deployed on <a href="https://hub.docker.com/u/inputoutput">dockerhub</a> under specific tags. Using docker provides <strong>the fastest</strong> and <strong>easiest</strong> user experience for setting up the Cardano stack. You should prefer this solution over building from sources unless you have really good reasons not to. The following images are available for each component of the Adrestia architecture:</p>
<p>Docker images are continuously built and deployed on <a href="https://hub.docker.com/u/cardanofoundation">dockerhub</a> under specific tags. Using docker provides <strong>the fastest</strong> and <strong>easiest</strong> user experience for setting up the Cardano stack. You should prefer this solution over building from sources unless you have really good reasons not to. The following images are available for each component of the Adrestia architecture:</p>
<div class="table-wrapper"><table><thead><tr><th style="text-align: left">Repository</th><th style="text-align: center">Tags</th><th style="text-align: center">Documentation</th></tr></thead><tbody>
<tr><td style="text-align: left"><a href="https://hub.docker.com/r/inputoutput/cardano-node">inputoutput/cardano-node</a></td><td style="text-align: center"><code>master</code>, <code>MAJ.MIN.PATCH</code>, <code>latest</code></td><td style="text-align: center"><a href="https://github.com/input-output-hk/cardano-node/blob/master/nix/docker.nix#L1-L25">link</a></td></tr>
<tr><td style="text-align: left"><a href="https://hub.docker.com/r/inputoutput/cardano-wallet">inputoutput/cardano-wallet</a></td><td style="text-align: center"><code>byron</code>, <code>YYYY.MM.DD-byron</code>, <code>latest</code></td><td style="text-align: center"><a href="use-docker.html">Docker</a></td></tr>
<tr><td style="text-align: left">[cardanofoundation/cardano-wallet][cardanofoundation-cardano-wallet]</td><td style="text-align: center"><code>byron</code>, <code>YYYY.MM.DD-byron</code>, <code>latest</code></td><td style="text-align: center"><a href="use-docker.html">Docker</a></td></tr>
</tbody></table>
</div>
<h2 id="tag-naming-scheme"><a class="header" href="#tag-naming-scheme">Tag Naming Scheme</a></h2>
Expand All @@ -166,18 +166,18 @@ <h3 id="examples"><a class="header" href="#examples">Examples</a></h3>
<pre><code>&gt; docker pull inputoutput/cardano-node:1.10.0
</code></pre>
<p>Similarly, one can pull <code>cardano-wallet@v2021-08-11</code> with:</p>
<pre><code>&gt; docker pull inputoutput/cardano-wallet:2021.8.11
<pre><code>&gt; docker pull cardanofoundation/cardano-wallet:2021.8.11
</code></pre>
<h3 id="about-version-compatibility"><a class="header" href="#about-version-compatibility">About version compatibility</a></h3>
<p>For version compatibility between components, please refer to compatibility matrix on each component main page
(e.g. <a href="https://github.com/cardano-foundation/cardano-wallet#latest-releases">cardano-wallet</a>).</p>
<h2 id="downloading-the-docker-image"><a class="header" href="#downloading-the-docker-image">Downloading the Docker image</a></h2>
<p>To get the latest release of <code>cardano-wallet</code>, run:</p>
<pre><code>docker pull inputoutput/cardano-wallet:latest
<pre><code>docker pull cardanofoundation/cardano-wallet:latest
</code></pre>
<h2 id="running-the-docker-container-for-cardano-wallet"><a class="header" href="#running-the-docker-container-for-cardano-wallet">Running the Docker container for cardano-wallet</a></h2>
<p>To run basic CLI commands, use:</p>
<pre><code>&gt; docker run --rm inputoutput/cardano-wallet:latest --help
<pre><code>&gt; docker run --rm cardanofoundation/cardano-wallet:latest --help
</code></pre>
<p>See <a href="../cli.html">cli</a>
for full documentation of the CLI.</p>
Expand All @@ -194,7 +194,7 @@ <h2 id="inspecting-the-contents-of-the-docker-image"><a class="header" href="#in
<p>The default entrypoint of the image is
<code>/bin/start-cardano-wallet-shelley</code>. If you need to run a shell
inside the Docker image, use the bash shell as the entrypoint:</p>
<pre><code>&gt; docker run --rm -it --entrypoint bash inputoutput/cardano-wallet:latest
<pre><code>&gt; docker run --rm -it --entrypoint bash cardanofoundation/cardano-wallet:latest
</code></pre>
<h2 id="docker-compose"><a class="header" href="#docker-compose">Docker compose</a></h2>
<p>One can also use <a href="https://docs.docker.com/compose/">docker-compose</a> to quickly spin up <code>cardano-wallet</code> together with supported block producer. Those are useful for a quick start or as a baseline for development.</p>
Expand Down

0 comments on commit 6b2235c

Please sign in to comment.