This commit is contained in:
juneix
2026-03-07 18:15:42 +08:00
parent d51bf8fc7b
commit d314155fcf
2 changed files with 15 additions and 8 deletions
+9 -4
View File
@@ -81,22 +81,27 @@ Simply put all files from `en/` folder into your web server (Nginx, Apache, etc.
### Option 2: Docker Deployment ### 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 ```bash
docker run -d \ docker run -d \
--name embyx \ --name embyx \
--network host \ --network host \
-e APP_LANG=en \ -e APP_LANG=en \
-e APP_PORT=8090 \ -e APP_PORT=8090 \
ghcr.io/juneix/embyx:latest ghcr.io/juneix/embyx
``` ```
#### Docker Compose: #### Docker Compose:
```yaml ```yaml
services: services:
embyx: embyx:
image: ghcr.io/juneix/embyx:latest image: ghcr.io/juneix/embyx
# image: juneix/embyx # Docker Hub Mirror
container_name: embyx container_name: embyx
restart: unless-stopped restart: unless-stopped
network_mode: host network_mode: host
+6 -4
View File
@@ -86,23 +86,25 @@ EmbyX 即将上架飞牛商店(审核中),加入交流群可下载 fpk 文
### 方式三:Docker 部署 ### 方式三:Docker 部署
如果你不想折腾 Web 环境,可以使用 Docker 快速部署 不想折腾 Web 环境?那就直接 Docker 搞定。推荐使用 GHCR 获取更新;NAS 用户可使用 Docker Hub
#### 使用 Docker: #### 使用 Docker CLI:
```bash ```bash
docker run -d \ docker run -d \
--name embyx \ --name embyx \
--network host \ --network host \
-e APP_LANG=zh \ -e APP_LANG=zh \
-e APP_PORT=8090 \ -e APP_PORT=8090 \
ghcr.io/juneix/embyx:latest ghcr.io/juneix/embyx
# docker.1ms.run/juneix/embyx # 毫秒镜像加速
``` ```
#### 使用 Docker Compose: #### 使用 Docker Compose:
```yaml ```yaml
services: services:
embyx: embyx:
image: ghcr.io/juneix/embyx:latest image: ghcr.io/juneix/embyx
# image: docker.1ms.run/juneix/embyx # 毫秒镜像加速
container_name: embyx container_name: embyx
restart: unless-stopped restart: unless-stopped
network_mode: host network_mode: host