mirror of
https://github.com/snapotter-hq/SnapOtter.git
synced 2026-08-03 07:46:42 +02:00
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:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user