Skip to content

Commit 10c8749

Browse files
committed
Update the Docker registry in the Solidity documentation
1 parent 93871f5 commit 10c8749

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

docs/installing-solidity.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ Please refer to the solc-js repository for instructions.
7171
Docker
7272
======
7373

74-
Docker images of Solidity builds are available using the ``solc`` image from the ``ethereum`` organization.
74+
Docker images of Solidity builds are available using the `solc <https://github.com/argotorg/solidity/pkgs/container/solc>`_ image from the argotorg organization on ghcr.io.
7575
Use the ``stable`` tag for the latest released version, and ``nightly`` for potentially unstable changes in the ``develop`` branch.
7676

7777
The Docker image runs the compiler executable so that you can pass all compiler arguments to it.
@@ -80,11 +80,11 @@ and runs it in a new container, passing the ``--help`` argument.
8080

8181
.. code-block:: bash
8282
83-
docker run ethereum/solc:stable --help
83+
docker run ghcr.io/argotorg/solc:stable --help
8484
8585
.. note::
8686

87-
Specific compiler versions are supported as the Docker image tag such as ``ethereum/solc:0.8.23``.
87+
Specific compiler versions are supported as the Docker image tag such as ``ghcr.io/argotorg/solc:0.8.23``.
8888
We will be passing the ``stable`` tag here instead of specific version tag to ensure that users get
8989
the latest version by default and avoid the issue of an out-of-date version.
9090

@@ -95,7 +95,7 @@ local folder for input and output, and specify the contract to compile. For exam
9595
9696
docker run \
9797
--volume "/tmp/some/local/path/:/sources/" \
98-
ethereum/solc:stable \
98+
ghcr.io/argotorg/solc:stable \
9999
/sources/Contract.sol \
100100
--abi \
101101
--bin \
@@ -108,7 +108,7 @@ self-contained (i.e. it does not refer to any external files that would have to
108108

109109
.. code-block:: bash
110110
111-
docker run ethereum/solc:stable --standard-json < input.json > output.json
111+
docker run ghcr.io/argotorg/solc:stable --standard-json < input.json > output.json
112112
113113
Linux Packages
114114
==============

0 commit comments

Comments
 (0)