From b475f89d85c996a782a3529381c01fabbe884284 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Wed, 4 Oct 2023 23:24:59 -0700 Subject: [PATCH] Migrate more URLs --- .github/workflows/docker-publish.yml | 2 +- .github/workflows/docs-publish.yml | 4 ++-- docs/configs/docker.md | 4 ++-- docs/installation/docker.md | 6 +++--- docs/installation/k8s.md | 2 +- src/pages/api/releases.js | 2 +- 6 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/docker-publish.yml b/.github/workflows/docker-publish.yml index 9639995f4..305734851 100644 --- a/.github/workflows/docker-publish.yml +++ b/.github/workflows/docker-publish.yml @@ -31,7 +31,7 @@ env: jobs: build: name: Docker Build & Push - if: github.repository == 'benphelps/homepage' + if: github.repository == 'gethomepage/homepage' runs-on: self-hosted permissions: contents: read diff --git a/.github/workflows/docs-publish.yml b/.github/workflows/docs-publish.yml index bd14f9aa3..74360970c 100644 --- a/.github/workflows/docs-publish.yml +++ b/.github/workflows/docs-publish.yml @@ -19,7 +19,7 @@ permissions: jobs: test: name: Test Build - if: github.repository == 'benphelps/homepage' && github.event_name == 'pull_request' + if: github.repository == 'gethomepage/homepage' && github.event_name == 'pull_request' runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 @@ -40,7 +40,7 @@ jobs: run: MKINSIDERS=false mkdocs build deploy: name: Build & Deploy - if: github.repository == 'benphelps/homepage' && github.event_name != 'pull_request' + if: github.repository == 'gethomepage/homepage' && github.event_name != 'pull_request' runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 diff --git a/docs/configs/docker.md b/docs/configs/docker.md index c46d55bb7..133c263b3 100644 --- a/docs/configs/docker.md +++ b/docs/configs/docker.md @@ -49,7 +49,7 @@ dockerproxy: restart: unless-stopped homepage: - image: ghcr.io/benphelps/homepage:latest + image: ghcr.io/gethomepage/homepage:latest container_name: homepage volumes: - /path/to/config:/app/config @@ -76,7 +76,7 @@ If you'd rather use the socket directly, first make sure that you're passing the ```yaml homepage: - image: ghcr.io/benphelps/homepage:latest + image: ghcr.io/gethomepage/homepage:latest container_name: homepage volumes: - /path/to/config:/app/config diff --git a/docs/installation/docker.md b/docs/installation/docker.md index 5fc9b1605..7c696792b 100644 --- a/docs/installation/docker.md +++ b/docs/installation/docker.md @@ -9,7 +9,7 @@ Using docker compose: version: "3.3" services: homepage: - image: ghcr.io/benphelps/homepage:latest + image: ghcr.io/gethomepage/homepage:latest container_name: homepage ports: - 3000:3000 @@ -30,7 +30,7 @@ In the docker compose example below, the environment variables `$PUID` and `$PGI version: "3.3" services: homepage: - image: ghcr.io/benphelps/homepage:latest + image: ghcr.io/gethomepage/homepage:latest container_name: homepage ports: - 3000:3000 @@ -45,7 +45,7 @@ services: ### With Docker Run ```bash -docker run -p 3000:3000 -v /path/to/config:/app/config -v /var/run/docker.sock:/var/run/docker.sock ghcr.io/benphelps/homepage:latest +docker run -p 3000:3000 -v /path/to/config:/app/config -v /var/run/docker.sock:/var/run/docker.sock ghcr.io/gethomepage/homepage:latest ``` ### Using Environment Secrets diff --git a/docs/installation/k8s.md b/docs/installation/k8s.md index 5a142e7a6..67c06f883 100644 --- a/docs/installation/k8s.md +++ b/docs/installation/k8s.md @@ -291,7 +291,7 @@ spec: enableServiceLinks: true containers: - name: homepage - image: "ghcr.io/benphelps/homepage:latest" + image: "ghcr.io/gethomepage/homepage:latest" imagePullPolicy: Always ports: - name: http diff --git a/src/pages/api/releases.js b/src/pages/api/releases.js index b5b3df009..14d3051d6 100644 --- a/src/pages/api/releases.js +++ b/src/pages/api/releases.js @@ -1,6 +1,6 @@ import cachedFetch from "utils/proxy/cached-fetch"; export default async function handler(req, res) { - const releasesURL = "https://api.github.com/repos/benphelps/homepage/releases"; + const releasesURL = "https://api.github.com/repos/gethomepage/homepage/releases"; return res.send(await cachedFetch(releasesURL, 5)); }