Use fully qualified container URLS (#2754)

Use fully qualified container URLS instead of abbrevations to make the
quickstart guide better approachable for non-docker container engines,
which might not default to using docker.io.

Signed-off-by: phoenix <felix.niederwanger@suse.com>
This commit is contained in:
Felix Niederwanger 2024-05-08 10:50:33 +02:00 committed by GitHub
parent 540de971ad
commit dcb70c0cc2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -13,7 +13,7 @@ considerations you should be aware of for production deployments.
### Get the software
```bash
docker pull kanidm/server:latest
docker pull docker.io/kanidm/server:latest
```
### Configure the container
@ -24,7 +24,7 @@ docker create --name kanidmd \
-p 443:8443 \
-p 636:3636 \
-v kanidmd:/data \
kanidm/server:latest
docker.io/kanidm/kanidm/server:latest
```
### Configure the server
@ -45,7 +45,7 @@ docker cp server.toml kanidmd:/data/server.toml
```bash
docker run --rm -i -t -v kanidmd:/data \
kanidm/server:latest \
docker.io/kanidm/server:latest \
kanidmd cert-generate
```