mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Merge pull request #19127 from thaJeztah/use-the-f-luke
Add -f flag to cURL install instructions
This commit is contained in:
commit
dd2981c26d
6 changed files with 7 additions and 7 deletions
|
@ -9,7 +9,7 @@ MAINTAINER Hector Castro hector@basho.com
|
|||
# Install Riak repository before we do apt-get update, so that update happens
|
||||
# in a single step
|
||||
RUN apt-get install -q -y curl && \
|
||||
curl -sSL https://packagecloud.io/install/repositories/basho/riak/script.deb | sudo bash
|
||||
curl -fsSL https://packagecloud.io/install/repositories/basho/riak/script.deb | sudo bash
|
||||
|
||||
# Install and setup project dependencies
|
||||
RUN apt-get update && \
|
||||
|
|
|
@ -37,7 +37,7 @@ script and we download the setup script and run it.
|
|||
# Install Riak repository before we do apt-get update, so that update happens
|
||||
# in a single step
|
||||
RUN apt-get install -q -y curl && \
|
||||
curl -sSL https://packagecloud.io/install/repositories/basho/riak/script.deb | sudo bash
|
||||
curl -fsSL https://packagecloud.io/install/repositories/basho/riak/script.deb | sudo bash
|
||||
|
||||
Then we install and setup a few dependencies:
|
||||
|
||||
|
|
|
@ -109,7 +109,7 @@ package manager.
|
|||
|
||||
3. Run the Docker installation script.
|
||||
|
||||
$ curl -sSL https://get.docker.com/ | sh
|
||||
$ curl -fsSL https://get.docker.com/ | sh
|
||||
|
||||
This script adds the `docker.repo` repository and installs Docker.
|
||||
|
||||
|
|
|
@ -104,7 +104,7 @@ There are two ways to install Docker Engine. You can install with the `dnf` pac
|
|||
|
||||
3. Run the Docker installation script.
|
||||
|
||||
$ curl -sSL https://get.docker.com/ | sh
|
||||
$ curl -fsSL https://get.docker.com/ | sh
|
||||
|
||||
This script adds the `docker.repo` repository and installs Docker.
|
||||
|
||||
|
|
|
@ -104,7 +104,7 @@ You use the same installation procedure for all versions of CentOS.
|
|||
|
||||
3. Run the Docker installation script.
|
||||
|
||||
$ curl -sSL https://get.docker.com/ | sh
|
||||
$ curl -fsSL https://get.docker.com/ | sh
|
||||
|
||||
4. Start the Docker daemon.
|
||||
|
||||
|
|
|
@ -7,12 +7,12 @@ set -e
|
|||
# 'wget -qO- https://get.docker.com/ | sh'
|
||||
#
|
||||
# For test builds (ie. release candidates):
|
||||
# 'curl -sSL https://test.docker.com/ | sh'
|
||||
# 'curl -fsSL https://test.docker.com/ | sh'
|
||||
# or:
|
||||
# 'wget -qO- https://test.docker.com/ | sh'
|
||||
#
|
||||
# For experimental builds:
|
||||
# 'curl -sSL https://experimental.docker.com/ | sh'
|
||||
# 'curl -fsSL https://experimental.docker.com/ | sh'
|
||||
# or:
|
||||
# 'wget -qO- https://experimental.docker.com/ | sh'
|
||||
#
|
||||
|
|
Loading…
Reference in a new issue