diff --git a/README.md b/README.md index 8e4ace494..86fd18794 100644 --- a/README.md +++ b/README.md @@ -29,10 +29,10 @@ see [sample docker-compose.yml](./docker-compose.yml) ### Manual ```bash # Create a volume -docker volume create uptime-kuma +docker volume create uptime # Start the container -docker run -d --restart=always -p 50013:50013 -v uptime-kuma:/app/data --name uptime-kuma louislam/uptime-kuma +docker run -d --restart=always -p 50013:50013 -v uptime:/app/data --name uptime philippdormann/uptime ``` Browse to http://localhost:50013 after started. @@ -40,7 +40,7 @@ Browse to http://localhost:50013 after started. Change Port and Volume ```bash -docker run -d --restart=always -p :50013 -v :/app/data --name uptime-kuma louislam/uptime-kuma +docker run -d --restart=always -p :50013 -v :/app/data --name uptime philippdormann/uptime ``` ## Without Docker @@ -48,8 +48,8 @@ docker run -d --restart=always -p :50013 -v :/app Required Tools: Node.js >= 14, git and pm2. ```bash -git clone https://github.com/louislam/uptime-kuma.git -cd uptime-kuma +git clone https://github.com/philippdormann/uptime-kuma.git uptime +cd uptime npm run setup # Option 1. Try it @@ -58,10 +58,10 @@ npm run start-server # (Recommended) # Option 2. Run in background using PM2 # Install PM2 if you don't have: npm install pm2 -g -pm2 start npm --name uptime-kuma -- run start-server +pm2 start npm --name uptime -- run start-server # Listen to different port or hostname -pm2 start npm --name uptime-kuma -- run start-server -- --port=80 --hostname=0.0.0.0 +pm2 start npm --name uptime -- run start-server -- --port=80 --hostname=0.0.0.0 ``` @@ -83,7 +83,7 @@ Labels to filter by include: ## One-click Deploy to DigitalOcean -[![Deploy to DO](https://www.deploytodo.com/do-btn-blue.svg)](https://cloud.digitalocean.com/apps/new?repo=https://github.com/louislam/uptime-kuma/tree/master&refcode=e2c7eb658434) +[![Deploy to DO](https://www.deploytodo.com/do-btn-blue.svg)](https://cloud.digitalocean.com/apps/new?repo=https://github.com/philippdormann/uptime-kuma/tree/master) Choose Cheapest Plan is enough. (US$ 5) diff --git a/server/database.js b/server/database.js index 49659e613..74d671d3f 100644 --- a/server/database.js +++ b/server/database.js @@ -47,7 +47,7 @@ class Database { console.error(ex) console.error("Start Uptime-Kuma failed due to patch db failed") - console.error("Please submit the bug report if you still encounter the problem after restart: https://github.com/louislam/uptime-kuma/issues") + console.error("Please submit the bug report if you still encounter the problem after restart: https://github.com/philippdormann/uptime-kuma/issues") process.exit(1); } } diff --git a/server/notification.js b/server/notification.js index 9785fc8f5..06cc6598d 100644 --- a/server/notification.js +++ b/server/notification.js @@ -180,7 +180,7 @@ class Notification { "text": "Visit Uptime Kuma", }, "value": "Uptime-Kuma", - "url": notification.slackbutton || "https://github.com/louislam/uptime-kuma" + "url": notification.slackbutton || "https://github.com/philippdormann/uptime-kuma" } ] } diff --git a/src/layouts/Layout.vue b/src/layouts/Layout.vue index 1599fdd8d..84a87d1c0 100644 --- a/src/layouts/Layout.vue +++ b/src/layouts/Layout.vue @@ -35,9 +35,8 @@