fix(doc): updating docker container ref (#3049)

This commit is contained in:
James Hodgkinson 2024-09-19 10:56:58 +10:00 committed by GitHub
parent fb3e7a01bc
commit e5de6a28ab
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 6 additions and 4 deletions

View file

@ -51,8 +51,10 @@ jobs:
python-version: "3.10" python-version: "3.10"
- name: Build the docs - name: Build the docs
# pinning mdbook-alerts because of <https://github.com/lambdalisue/rs-mdbook-alerts/issues/79>
run: | run: |
cargo install mdbook-alerts mdbook-mermaid cargo install mdbook-alerts --version 0.6.4
cargo install mdbook-mermaid
cargo doc --no-deps cargo doc --no-deps
mdbook build *book mdbook build *book
rm -rf ./docs/ rm -rf ./docs/

View file

@ -32,10 +32,10 @@ First we create a docker volume to store the data, then we start the container.
```bash ```bash
docker volume create kanidmd docker volume create kanidmd
docker create --name kanidmd \ docker create --name kanidmd \
-p 443:8443 \ -p '443:8443' \
-p 636:3636 \ -p '636:3636' \
-v kanidmd:/data \ -v kanidmd:/data \
docker.io/kanidm/kanidm/server:latest docker.io/kanidm/server:latest
``` ```
## Copy the configuration to the container ## Copy the configuration to the container