Skip to content

Commit

Permalink
Update container address
Browse files Browse the repository at this point in the history
  • Loading branch information
gbraad committed Dec 3, 2024
1 parent 54a3893 commit 3d9091e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/Containerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ghcr.io/gbraad-redhat/mdbook:0.4.42
FROM quay.io/crc-org/mdbook:0.4.42

RUN dnf install -y git-core \
&& dnf clean all \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Check out repository code
uses: actions/checkout@v4
- name: Build docs
run: docker run --rm -v $PWD:/workspace ghcr.io/gbraad-redhat/mdbook:0.4.42 mdbook build
run: docker run --rm -v $PWD:/workspace quay.io/crc-org/mdbook:0.4.42 mdbook build
- name: Deploy
uses: peaceiris/actions-gh-pages@v4
if: github.ref == 'refs/heads/main'
Expand Down
6 changes: 3 additions & 3 deletions containers/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ This Fedora container image contains:
- mdBook: https://github.com/rust-lang/mdBook
create book from markdown files, like Gitbook
- mdBook preprocessor: https://crates.io/crates/mdbook-callouts
to add Obsidian Flavored Markdown's Callouts
to add Obsidian Flavored Markdown's Callouts


## Usage instructions
Start the container in the folder that contains your documentation source

```bash
$ podman run --rm -v $PWD:/workspace \
ghcr.io/gbraad-redhat/mdbook:0.4.42 \
quay.io/crc-org/mdbook:0.4.42 \
mdbook build
```

Expand All @@ -25,7 +25,7 @@ Or using

```bash
$ podman run --rm -v $PWD:/workspace -p 3000:3000 \
ghcr.io/gbraad-redhat/mdbook:0.4.42 \
quay.io/crc-org/mdbook:0.4.42 \
mdbook serve
```

Expand Down

0 comments on commit 3d9091e

Please sign in to comment.