diff --git a/.devcontainer/Containerfile b/.devcontainer/Containerfile index 0490c17..47310f2 100644 --- a/.devcontainer/Containerfile +++ b/.devcontainer/Containerfile @@ -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 \ diff --git a/.github/workflows/gh-pages.yml b/.github/workflows/gh-pages.yml index 5f8c8b5..589bd79 100644 --- a/.github/workflows/gh-pages.yml +++ b/.github/workflows/gh-pages.yml @@ -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' diff --git a/README.md b/README.md index ef0da16..7da99df 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/containers/README.md b/containers/README.md index a1fe8b6..2c7e159 100644 --- a/containers/README.md +++ b/containers/README.md @@ -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. @@ -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