fix: use Docker Hub as primary one-liner (GHCR is private)

GHCR packages default to private and require docker login. Switch the
primary quick-start command to Docker Hub (snapotter/snapotter) which
is publicly accessible. GHCR remains available as an alternative.
This commit is contained in:
SnapOtter
2026-04-25 01:28:02 +08:00
parent 3e3eb6f180
commit 6c43802280
5 changed files with 9 additions and 9 deletions
+1 -1
View File
@@ -6,7 +6,7 @@ import { useState } from "react";
import { FadeIn } from "./fade-in";
const command =
"docker run -d --name SnapOtter -p 1349:1349 -v SnapOtter-data:/data ghcr.io/snapotter-hq/snapotter:latest";
"docker run -d --name SnapOtter -p 1349:1349 -v SnapOtter-data:/data snapotter/snapotter:latest";
export function HowItWorks() {
const [copied, setCopied] = useState(false);