2013-05-21 11:47:16 -06:00
|
|
|
:title: Index Environment Variable
|
|
|
|
:description: Setting this environment variable on the docker server will change the URL docker index.
|
|
|
|
:keywords: docker, index environment variable, documentation
|
|
|
|
|
2013-05-10 11:17:41 -07:00
|
|
|
=================================
|
|
|
|
Docker Index Environment Variable
|
|
|
|
=================================
|
|
|
|
|
|
|
|
Variable
|
|
|
|
--------
|
|
|
|
|
|
|
|
.. code-block:: sh
|
|
|
|
|
|
|
|
DOCKER_INDEX_URL
|
|
|
|
|
|
|
|
Setting this environment variable on the docker server will change the URL docker index.
|
|
|
|
This address is used in commands such as ``docker login``, ``docker push`` and ``docker pull``.
|
|
|
|
The docker daemon doesn't need to be restarted for this parameter to take effect.
|
|
|
|
|
|
|
|
Example
|
|
|
|
-------
|
|
|
|
|
|
|
|
.. code-block:: sh
|
|
|
|
|
|
|
|
docker -d &
|
|
|
|
export DOCKER_INDEX_URL="https://index.docker.io"
|
|
|
|
|