diff --git a/docs/.vitepress/en.ts b/docs/.vitepress/en.ts index aab97bf41..6fc0bc7aa 100644 --- a/docs/.vitepress/en.ts +++ b/docs/.vitepress/en.ts @@ -76,10 +76,10 @@ const side = { text: "Using script", link: "/manual/get-started/install-windows-script", }, - { + /* { text: "Using Docker image", link: "/manual/get-started/install-windows-docker", - }, + },*/ ], }, { diff --git a/docs/.vitepress/zh.ts b/docs/.vitepress/zh.ts index 46e5c1ae5..09877a047 100644 --- a/docs/.vitepress/zh.ts +++ b/docs/.vitepress/zh.ts @@ -78,10 +78,10 @@ const side = { text: "使用脚本", link: "/zh/manual/get-started/install-windows-script", }, - { + /*{ text: "使用 Docker 镜像", link: "/zh/manual/get-started/install-windows-docker", - }, + },*/ ], }, { diff --git a/docs/code-snippets/docker-daemon.json b/docs/code-snippets/docker-daemon.json index 3e299d85a..1de1072f5 100644 --- a/docs/code-snippets/docker-daemon.json +++ b/docs/code-snippets/docker-daemon.json @@ -1,6 +1,6 @@ { "registry-mirrors": [ - "https://mirrors.joinolares.cn" + "https://mirrors.olares.cn" ], "features": { diff --git a/docs/developer/install/environment-variables.md b/docs/developer/install/environment-variables.md index 53d96dae5..1e12f19fb 100644 --- a/docs/developer/install/environment-variables.md +++ b/docs/developer/install/environment-variables.md @@ -142,7 +142,7 @@ Explicitly specifies that this machine is accessible publicly on the internet, a ### `REGISTRY_MIRRORS` Specifies a custom Docker registry mirror for faster image pulls. -- **Valid values**: `https://mirrors.joinolares.cn` or any other valid URL +- **Valid values**: `https://mirrors.olares.com` or any other valid URL - **Default**: `https://registry-1.docker.io` ### `TAILSCALE_CONTROLPLANE_URL` diff --git a/docs/manual/get-started/install-olares.md b/docs/manual/get-started/install-olares.md index bc628e107..060a0ffdd 100644 --- a/docs/manual/get-started/install-olares.md +++ b/docs/manual/get-started/install-olares.md @@ -32,7 +32,7 @@ These methods are suitable for **development**, **testing**, or **lightweight en #### Windows - [**One-line script**](install-windows-script.md): Install Olares in Windows Subsystem for Linux 2 (WSL 2). -- [**Docker image**](install-windows-docker.md): Run Olares in Docker with WSL 2 integration. + #### macOS - [**One-line script**](install-mac-script.md): Install Olares in a containerized environment via MiniKube. diff --git a/docs/zh/developer/install/environment-variables.md b/docs/zh/developer/install/environment-variables.md index 6b41672f0..0366df184 100644 --- a/docs/zh/developer/install/environment-variables.md +++ b/docs/zh/developer/install/environment-variables.md @@ -35,8 +35,8 @@ export FRP_ENABLE=1 \ FRP_PORT=0 \ JUICEFS=0 \ FRP_AUTH_METHOD="jws" \ - REGISTRY_MIRRORS="https://mirrors.joinolares.cn" \ - DOWNLOAD_CDN_URL="https://cdn.joinolares.cn" \ + REGISTRY_MIRRORS="https://mirrors.olares.cn" \ + DOWNLOAD_CDN_URL="https://cdn.olares.cn" \ MARKET_PROVIDER="appstore-china-server-prod.api.jointerminus.cn" \ TERMINUS_CERT_SERVICE_API="https://terminus-cert.api.jointerminus.cn" \ TERMINUS_DNS_SERVICE_API="https://terminus-dnsop.api.jointerminus.cn" \ @@ -167,7 +167,7 @@ curl -sSfL https://olares.sh | bash ### `REGISTRY_MIRRORS` 设置 Docker 镜像加速地址。 -- **可选值**:`https://mirrors.joinolares.cn` 或其他镜像源地址 +- **可选值**:`https://mirrors.olares.cn` 或其他镜像源地址 - **默认值**:`https://registry-1.docker.io` ### `TAILSCALE_CONTROLPLANE_URL` diff --git a/docs/zh/manual/best-practices/install-olares-gpu-passthrough.md b/docs/zh/manual/best-practices/install-olares-gpu-passthrough.md index edfb1af60..513405df9 100644 --- a/docs/zh/manual/best-practices/install-olares-gpu-passthrough.md +++ b/docs/zh/manual/best-practices/install-olares-gpu-passthrough.md @@ -28,7 +28,7 @@ description: 在 Proxmox VE(PVE)中配置 GPU 直通,并在启用 GPU 加 - RAM:推荐 16 GB 及以上 - 存储:不少于 200 GB的可用磁盘空间,需使用 SSD 硬盘安装。使用 HDD(机械硬盘)可能会导致安装失败。 - 支持的系统版本:PVE 8.3.2 -- Olares ISO 镜像:点击[此处](https://cdn.joinolares.cn/olares-v1.12.1-amd64-cn.iso)下载 Olares 官方镜像。 +- Olares ISO 镜像:点击[此处](https://cdn.olares.cn/olares-v1.12.1-amd64-cn.iso)下载 Olares 官方镜像。 ## 在 PVE 中配置 GPU 直通 diff --git a/docs/zh/manual/best-practices/set-custom-domain.md b/docs/zh/manual/best-practices/set-custom-domain.md index a2cfc145f..6c7c87012 100644 --- a/docs/zh/manual/best-practices/set-custom-domain.md +++ b/docs/zh/manual/best-practices/set-custom-domain.md @@ -216,8 +216,8 @@ DID(Decentralized Identifier,去中心化标识符)是在获得最终的 O $env:FRP_PORT = "0" $env:JUICEFS = "0" $env:FRP_AUTH_METHOD = "jws" - $env:REGISTRY_MIRRORS = "https://mirrors.joinolares.cn" - $env:DOWNLOAD_CDN_URL = "https://cdn.joinolares.cn" + $env:REGISTRY_MIRRORS = "https://mirrors.olares.cn" + $env:DOWNLOAD_CDN_URL = "https://cdn.olares.cn" $env:MARKET_PROVIDER = "appstore-china-server-prod.api.jointerminus.cn" $env:TERMINUS_CERT_SERVICE_API = "https://terminus-cert.api.jointerminus.cn" $env:TERMINUS_DNS_SERVICE_API = "https://terminus-dnsop.api.jointerminus.cn" diff --git a/docs/zh/manual/get-started/install-linux-docker.md b/docs/zh/manual/get-started/install-linux-docker.md index 35bfff4e0..ce91add44 100644 --- a/docs/zh/manual/get-started/install-linux-docker.md +++ b/docs/zh/manual/get-started/install-linux-docker.md @@ -119,7 +119,7 @@ cd ~/olares-config ```bash Registry Mirrors: - https://mirrors.joinolares.cn/ + https://mirrors.olares.cn/ ``` ## 设置环境变量并启动容器 diff --git a/docs/zh/manual/get-started/install-mac-docker.md b/docs/zh/manual/get-started/install-mac-docker.md index 2c3d29aa8..d5705e1dd 100644 --- a/docs/zh/manual/get-started/install-mac-docker.md +++ b/docs/zh/manual/get-started/install-mac-docker.md @@ -39,7 +39,7 @@ Mac 设备需满足以下条件: