1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Change fetching of gpg key from http to https

Or was there any reason to fetch using http?
This commit is contained in:
Tobias Schwab 2013-08-26 11:45:15 +02:00
parent c864647721
commit 4440bde0eb

View file

@ -67,7 +67,7 @@ to follow them again.*
.. code-block:: bash .. code-block:: bash
# Add the Docker repository key to your local keychain # Add the Docker repository key to your local keychain
sudo sh -c "curl http://get.docker.io/gpg | apt-key add -" sudo sh -c "curl https://get.docker.io/gpg | apt-key add -"
# Add the Docker repository to your apt sources list. # Add the Docker repository to your apt sources list.
sudo sh -c "echo deb https://get.docker.io/ubuntu docker main > /etc/apt/sources.list.d/docker.list" sudo sh -c "echo deb https://get.docker.io/ubuntu docker main > /etc/apt/sources.list.d/docker.list"