浏览代码

Migrate more URLs

shamoon 1 年之前
父节点
当前提交
b475f89

+ 1 - 1
.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

+ 2 - 2
.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

+ 2 - 2
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

+ 3 - 3
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

+ 1 - 1
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

+ 1 - 1
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));
 }