Skip to content

Commit

Permalink
replace legacy Docker Hub domain in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Pwuts committed Jan 17, 2023
1 parent 2242217 commit fa184af
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions docs/private-registries.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,14 @@ password `auth` string:
(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`.
When using private images on docker hub, the containers beeing watched needs to use the full image name, including the repository prefix `docker.io`.
So instead of
```
docker run -d myuser/myimage
```
you would run it as
```
docker run -d index.docker.io/myuser/myimage
docker run -d docker.io/myuser/myimage
```


Expand Down
2 changes: 1 addition & 1 deletion docs/usage-overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ from a private repo at Docker Hub and monitors it with watchtower. Note the comm
version: "3"
services:
cavo:
image: index.docker.io/<org>/<image>:<tag>
image: docker.io/<org>/<image>:<tag>
ports:
- "443:3443"
- "80:3080"
Expand Down

0 comments on commit fa184af

Please sign in to comment.