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
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