You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/installing-solidity.rst
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -71,7 +71,7 @@ Please refer to the solc-js repository for instructions.
71
71
Docker
72
72
======
73
73
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.
75
75
Use the ``stable`` tag for the latest released version, and ``nightly`` for potentially unstable changes in the ``develop`` branch.
76
76
77
77
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.
80
80
81
81
.. code-block:: bash
82
82
83
-
docker run ethereum/solc:stable --help
83
+
docker run ghcr.io/argotorg/solc:stable --help
84
84
85
85
.. note::
86
86
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``.
88
88
We will be passing the ``stable`` tag here instead of specific version tag to ensure that users get
89
89
the latest version by default and avoid the issue of an out-of-date version.
90
90
@@ -95,7 +95,7 @@ local folder for input and output, and specify the contract to compile. For exam
95
95
96
96
docker run \
97
97
--volume "/tmp/some/local/path/:/sources/" \
98
-
ethereum/solc:stable \
98
+
ghcr.io/argotorg/solc:stable \
99
99
/sources/Contract.sol \
100
100
--abi \
101
101
--bin \
@@ -108,7 +108,7 @@ self-contained (i.e. it does not refer to any external files that would have to
108
108
109
109
.. code-block:: bash
110
110
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
0 commit comments