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 0c44572 commit e9a4a55
Show file tree
Hide file tree
Showing 4 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/hugo:0.127.0
FROM quay.io/crc-org/hugo:0.127.0

RUN dnf install -y git-core \
&& dnf clean all \
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
submodules: true # Fetch Hugo themes (true OR recursive)
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod
- name: Build
run: docker run --rm -v $PWD:/workspace ghcr.io/gbraad-redhat/hugo:0.127.0 --minify
run: docker run --rm -v $PWD:/workspace quay.io/crc-org/hugo:0.127.0 --minify
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
if: github.ref == 'refs/heads/main'
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ The simplest way to generate the output is as follows:
$ git clone https://github.com/crc-org/blog
$ cd blog
$ git submodule update --init
$ podman run --rm -v $PWD:/workspace ghcr.io/gbraad-redhat/hugo:0.127.0 --minify
$ podman run --rm -v $PWD:/workspace quay.io/crc-org/hugo:0.127.0 --minify
```

This will create a `./public/` folder that contains the output as published on GH Pages.
Expand Down
4 changes: 2 additions & 2 deletions containers/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Start the container in the folder that contains your blog source

```bash
$ podman run --rm -v $PWD:/workspace \
ghcr.io/gbraad-redhat/hugo:0.127.0 --minify
quay.io/crc-org/hugo:0.127.0 --minify
```

This will generate a `public` output.
Expand All @@ -22,7 +22,7 @@ Or using

```bash
$ podman run --rm -v $PWD:/workspace -p 1313:1313 \
ghcr.io/gbraad-redhat/hugo:0.127.0 \
quay.io/crc-org/hugo:0.127.0 \
server --bind 0.0.0.0
```
the generated content will be published using the embedded server on http://localhost:1313
Expand Down

0 comments on commit e9a4a55

Please sign in to comment.