docs: update some URLs and remove some of the Docker branding

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
Sebastiaan van Stijn 2022-01-19 10:31:42 +01:00
parent ae24899119
commit 3b83bce74d
No known key found for this signature in database
GPG key ID: 76698F39D527CE8C
6 changed files with 20 additions and 20 deletions

View file

@ -40,9 +40,9 @@ you want through the secondary authentication mechanism implemented inside your
proxy, it also requires that you move TLS termination from the Registry to the
proxy itself.
> **Note**: Docker does not recommend binding your registry to `localhost:5000` without
> authentication. This creates a potential loophole in your Docker Registry security.
> As a result, anyone who can log on to the server where your Docker Registry is running
> **Note**: It is not recommended to bind your registry to `localhost:5000` without
> authentication. This creates a potential loophole in your registry security.
> As a result, anyone who can log on to the server where your registry is running
> can push images without authentication.
Furthermore, introducing an extra http layer in your communication pipeline
@ -70,7 +70,7 @@ proxy_set_header X-Forwarded-Proto $scheme;
Otherwise Nginx resets the ELB's values, and the requests are not routed
properly. For more information, see
[#970](https://github.com/docker/distribution/issues/970).
[#970](https://github.com/distribution/distribution/issues/970).
## Setting things up

View file

@ -33,11 +33,11 @@ If you don't, the TLDR is:
If you want to understand, you should read [How to Write Go Code](https://golang.org/doc/code.html).
## Checkout the Docker Distribution source tree
## Checkout the source tree
mkdir -p $GOPATH/src/github.com/docker
git clone https://github.com/docker/distribution.git $GOPATH/src/github.com/docker/distribution
cd $GOPATH/src/github.com/docker/distribution
mkdir -p $GOPATH/src/github.com/distribution
git clone https://github.com/distribution/distribution.git $GOPATH/src/github.com/distribution/distribution
cd $GOPATH/src/github.com/distribution/distribution
## Build the binary
@ -52,23 +52,23 @@ Copy the registry configuration file in place:
mkdir /Users/Shared/Registry
cp docs/osx/config.yml /Users/Shared/Registry/config.yml
## Run the Docker Registry under launchd
## Run the registry under launchd
Copy the Docker registry plist into place:
Copy the registry plist into place:
plutil -lint docs/recipes/osx/com.docker.registry.plist
cp docs/recipes/osx/com.docker.registry.plist ~/Library/LaunchAgents/
chmod 644 ~/Library/LaunchAgents/com.docker.registry.plist
Start the Docker registry:
Start the registry:
launchctl load ~/Library/LaunchAgents/com.docker.registry.plist
### Restart the docker registry service
### Restart the registry service
launchctl stop com.docker.registry
launchctl start com.docker.registry
### Unload the docker registry service
### Unload the registry service
launchctl unload ~/Library/LaunchAgents/com.docker.registry.plist