diff --git a/README.md b/README.md index a8ef40e..2a6ce69 100644 --- a/README.md +++ b/README.md @@ -81,22 +81,27 @@ Simply put all files from `en/` folder into your web server (Nginx, Apache, etc. ### Option 2: Docker Deployment -If you don't want to mess with the web environment, you can use docker to deploy quickly. +Don't want to mess with the environment? Just use Docker. Recommended GHCR for updates, Docker Hub for NAS. + +- GHCR: `ghcr.io/juneix/embyx` +- Docker Hub: `juneix/embyx` + +#### Docker CLI: -#### Docker: ```bash docker run -d \ --name embyx \ --network host \ -e APP_LANG=en \ -e APP_PORT=8090 \ - ghcr.io/juneix/embyx:latest + ghcr.io/juneix/embyx ``` #### Docker Compose: ```yaml services: embyx: - image: ghcr.io/juneix/embyx:latest + image: ghcr.io/juneix/embyx + # image: juneix/embyx # Docker Hub Mirror container_name: embyx restart: unless-stopped network_mode: host diff --git a/README_zh.md b/README_zh.md index 66e428e..00f6410 100644 --- a/README_zh.md +++ b/README_zh.md @@ -86,23 +86,25 @@ EmbyX 即将上架飞牛商店(审核中),加入交流群可下载 fpk 文 ### 方式三:Docker 部署 -如果你不想折腾 Web 环境,可以使用 Docker 快速部署。 +不想折腾 Web 环境?那就直接 Docker 搞定。推荐使用 GHCR 获取更新;NAS 用户可使用 Docker Hub。 -#### 使用 Docker: +#### 使用 Docker CLI: ```bash docker run -d \ --name embyx \ --network host \ -e APP_LANG=zh \ -e APP_PORT=8090 \ - ghcr.io/juneix/embyx:latest + ghcr.io/juneix/embyx + # docker.1ms.run/juneix/embyx # 毫秒镜像加速 ``` #### 使用 Docker Compose: ```yaml services: embyx: - image: ghcr.io/juneix/embyx:latest + image: ghcr.io/juneix/embyx + # image: docker.1ms.run/juneix/embyx # 毫秒镜像加速 container_name: embyx restart: unless-stopped network_mode: host