mirror of https://github.com/docker/docs.git
Merge pull request #7187 from trapier/notary-set-selinux-context
notary: set selinux context while installing
This commit is contained in:
commit
e395b9de4b
|
@ -33,8 +33,8 @@ curl -L <download-url> -o notary
|
||||||
# Make it executable
|
# Make it executable
|
||||||
chmod +x notary
|
chmod +x notary
|
||||||
|
|
||||||
# Move it to a location in your path
|
# Move it to a location in your path. Use the -Z option if you're using SELinux.
|
||||||
sudo mv notary /usr/bin/
|
sudo mv -Z notary /usr/bin/
|
||||||
```
|
```
|
||||||
|
|
||||||
## Configure the Notary CLI client
|
## Configure the Notary CLI client
|
||||||
|
|
|
@ -33,8 +33,8 @@ curl -L <download-url> -o notary
|
||||||
# Make it executable
|
# Make it executable
|
||||||
chmod +x notary
|
chmod +x notary
|
||||||
|
|
||||||
# Move it to a location in your path
|
# Move it to a location in your path. Use the -Z option if you're using SELinux.
|
||||||
sudo mv notary /usr/bin/
|
sudo mv -Z notary /usr/bin/
|
||||||
```
|
```
|
||||||
|
|
||||||
## Configure the Notary CLI client
|
## Configure the Notary CLI client
|
||||||
|
|
|
@ -41,8 +41,8 @@ curl -L <download-url> -o notary
|
||||||
# Make it executable
|
# Make it executable
|
||||||
chmod +x notary
|
chmod +x notary
|
||||||
|
|
||||||
# Move it to a location in your path
|
# Move it to a location in your path. Use the -Z option if you're using SELinux.
|
||||||
sudo mv notary /usr/bin/
|
sudo mv -Z notary /usr/bin/
|
||||||
```
|
```
|
||||||
|
|
||||||
## Configure the Notary CLI client
|
## Configure the Notary CLI client
|
||||||
|
|
|
@ -41,8 +41,8 @@ curl -L <download-url> -o notary
|
||||||
# Make it executable
|
# Make it executable
|
||||||
chmod +x notary
|
chmod +x notary
|
||||||
|
|
||||||
# Move it to a location in your path
|
# Move it to a location in your path. Use the -Z option if you're using SELinux.
|
||||||
sudo mv notary /usr/bin/
|
sudo mv -Z notary /usr/bin/
|
||||||
```
|
```
|
||||||
|
|
||||||
## Configure the Notary CLI client
|
## Configure the Notary CLI client
|
||||||
|
|
Loading…
Reference in New Issue