Skip to content

Commit

Permalink
docs: add note about docker hub private images (#1132)
Browse files Browse the repository at this point in the history
  • Loading branch information
piksel committed Dec 27, 2021
1 parent ebdbe29 commit 93ccce8
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions docs/private-registries.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,18 @@ password `auth` string:
`<REGISTRY_NAME>` needs to be replaced by the name of your private registry
(e.g., `my-private-registry.example.org`)

!!! important "Using private images on docker hub"
When using private images on docker hub, the containers beeing watched needs to use the full image name, including the repository prefix `index.docker.io`.
So instead of
```
docker run -d myuser/myimage
```
you would run it as
```
docker run -d index.docker.io/myuser/myimage
```


The required `auth` string can be generated as follows:

```bash
Expand Down

0 comments on commit 93ccce8

Please sign in to comment.