From c2d1a7d70ea614eb5696cbd3b3871b275efe0a2b Mon Sep 17 00:00:00 2001 From: Mozi <29089388+pzhlkj6612@users.noreply.github.com> Date: Mon, 24 Mar 2025 18:20:47 +0000 Subject: [PATCH] fix(docker): always use the "latest" tag in minimal examples To sync with the chosen tag in "docker cli" examples. --- docs/guide/install/docker.md | 2 +- docs/zh/guide/install/docker.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/guide/install/docker.md b/docs/guide/install/docker.md index 56bb7a041..9ae250f2f 100644 --- a/docs/guide/install/docker.md +++ b/docs/guide/install/docker.md @@ -32,7 +32,7 @@ docker run -d --restart=unless-stopped -v /etc/alist:/opt/alist/data -p 5244:524 version: '3.3' services: alist: - image: 'xhofe/alist:beta' + image: 'xhofe/alist:latest' container_name: alist volumes: - '/etc/alist:/opt/alist/data' diff --git a/docs/zh/guide/install/docker.md b/docs/zh/guide/install/docker.md index c8ceed06a..ec4d0163e 100644 --- a/docs/zh/guide/install/docker.md +++ b/docs/zh/guide/install/docker.md @@ -32,7 +32,7 @@ docker run -d --restart=unless-stopped -v /etc/alist:/opt/alist/data -p 5244:524 version: '3.3' services: alist: - image: 'xhofe/alist:beta' + image: 'xhofe/alist:latest' container_name: alist volumes: - '/etc/alist:/opt/alist/data'