Skip to content

Commit 3d9091e

Browse files
committed
Update container address
1 parent 54a3893 commit 3d9091e

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.devcontainer/Containerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ghcr.io/gbraad-redhat/mdbook:0.4.42
1+
FROM quay.io/crc-org/mdbook:0.4.42
22

33
RUN dnf install -y git-core \
44
&& dnf clean all \

.github/workflows/publish-docs.yaml renamed to .github/workflows/gh-pages.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Check out repository code
1717
uses: actions/checkout@v4
1818
- name: Build docs
19-
run: docker run --rm -v $PWD:/workspace ghcr.io/gbraad-redhat/mdbook:0.4.42 mdbook build
19+
run: docker run --rm -v $PWD:/workspace quay.io/crc-org/mdbook:0.4.42 mdbook build
2020
- name: Deploy
2121
uses: peaceiris/actions-gh-pages@v4
2222
if: github.ref == 'refs/heads/main'

containers/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@ This Fedora container image contains:
77
- mdBook: https://github.com/rust-lang/mdBook
88
create book from markdown files, like Gitbook
99
- mdBook preprocessor: https://crates.io/crates/mdbook-callouts
10-
to add Obsidian Flavored Markdown's Callouts
10+
to add Obsidian Flavored Markdown's Callouts
1111

1212

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

1616
```bash
1717
$ podman run --rm -v $PWD:/workspace \
18-
ghcr.io/gbraad-redhat/mdbook:0.4.42 \
18+
quay.io/crc-org/mdbook:0.4.42 \
1919
mdbook build
2020
```
2121

@@ -25,7 +25,7 @@ Or using
2525

2626
```bash
2727
$ podman run --rm -v $PWD:/workspace -p 3000:3000 \
28-
ghcr.io/gbraad-redhat/mdbook:0.4.42 \
28+
quay.io/crc-org/mdbook:0.4.42 \
2929
mdbook serve
3030
```
3131

0 commit comments

Comments
 (0)