docs: add note about docker hub private images (#1132)

pull/1292/head
nils måsén 2 years ago committed by GitHub
parent ebdbe2994c
commit 93ccce8ed2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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

Loading…
Cancel
Save