diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml
index 673115419..8bc8a13f5 100644
--- a/.github/workflows/docker.yml
+++ b/.github/workflows/docker.yml
@@ -7,7 +7,7 @@ on:
workflow_dispatch:
env:
- IMAGE_NAME: mhp
+ IMAGE_NAME: homarr
jobs:
# Push image to GitHub Packages.
@@ -69,8 +69,8 @@ jobs:
with:
# list of Docker images to use as base name for tags
images: |
- ajnart/mhp
- ghcr.io/ajnart/mhp
+ ajnart/homarr
+ ghcr.io/ajnart/homarr
# generate Docker tags based on the following events/attributes
tags: |
type=raw,value=latest,enable={{is_default_branch}}
diff --git a/README.md b/README.md
index a9adae83c..5cabbbdc6 100644
--- a/README.md
+++ b/README.md
@@ -39,7 +39,7 @@ _Requirements_:
**Standard Docker Install**
```sh
-docker run --name homarr -p 7575:80 -d ghcr.io/ajnart/mhp
+docker run --name homarr -p 7575:80 -d ghcr.io/ajnart/homarr
```
**Docker Compose**
@@ -50,9 +50,9 @@ version: '3'
# Homarr - A homepage for your server. #
#--------------------------------------------------------------------------------------------#
services:
- mhp:
+ homarr:
container_name: homarr
- image: ghcr.io/ajnart/mhp
+ image: ghcr.io/ajnart/homarr
restart: unless-stopped
ports:
- '7575:80'
diff --git a/components/AppShelf/AddAppShelfItem.tsx b/components/AppShelf/AddAppShelfItem.tsx
index c7d5f1f28..37eac451e 100644
--- a/components/AppShelf/AddAppShelfItem.tsx
+++ b/components/AppShelf/AddAppShelfItem.tsx
@@ -73,7 +73,11 @@ export default function AddItemShelfItem(props: any) {
}
function MatchIcon(name: string, form: any) {
- fetch(`https://cdn.jsdelivr.net/gh/walkxhub/dashboard-icons/png/${name.replace(/\s+/g, '-').toLowerCase()}.png`)
+ fetch(
+ `https://cdn.jsdelivr.net/gh/walkxhub/dashboard-icons/png/${name
+ .replace(/\s+/g, '-')
+ .toLowerCase()}.png`
+ )
.then((res) => {
if (res.status === 200) {
form.setFieldValue('icon', res.url);
@@ -85,7 +89,7 @@ function MatchIcon(name: string, form: any) {
return false;
}
-
+
export function AddAppShelfItemForm(props: { setOpened: (b: boolean) => void } & any) {
const { setOpened } = props;
const { addService, config, setConfig } = useConfig();
diff --git a/components/layout/Logo.tsx b/components/layout/Logo.tsx
index 9f0b15f59..824688a1b 100644
--- a/components/layout/Logo.tsx
+++ b/components/layout/Logo.tsx
@@ -2,9 +2,14 @@ import { Text } from '@mantine/core';
import * as React from 'react';
export function Logo({ style }: any) {
- return (
-