feat: add Docker deployment guides for general use and aaPanel, localized in English and Indonesian.

This commit is contained in:
dyzulk
2026-01-19 13:33:57 +07:00
parent b24d7e8d4c
commit 3ed3b27661
4 changed files with 88 additions and 0 deletions

View File

@@ -77,3 +77,31 @@ If you find MIVO useful, please consider supporting its development. Your contri
*Created with <Icon name="Heart" color="danger" /> by MivoDev*
## <Icon name="RefreshCw" color="warning" /> Updating MIVO
To update MIVO to the latest version (e.g. from v1.2.2 to v1.2.3):
**Using Docker Run:**
```bash
# 1. Pull the latest image
docker pull mivodev/mivo:latest
# 2. Stop and remove the old container
docker stop mivo
docker rm mivo
# 3. Run the new container (use the same command as before)
docker run -d --name mivo -p 8080:80 ...
```
**Using Docker Compose:**
```bash
# 1. Pull the latest image
docker-compose pull
# 2. Recreate the container
docker-compose up -d
```