Skip to content
Open
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion content/self-host/rustdesk-server-pro/faq/_index.en.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,12 @@ You'd better back up data files (sqlite3 files etc.) first, https://github.com/r
3. Follow the prompts as they guide you through the upgrade.
#### Docker Compose
```
docker compose up -d --build --pull always
tar -czvf "RustdeskDB$(date +'%Y%m%d%H%M%S').tar.gz" /path/to/your/data
docker stop hbbr hbbs # Stop the running containers
docker rm hbbr hbbs # Remove the stopped containers
docker rmi rustdesk/rustdesk-server-pro # Remove the current RustDesk image
docker image prune -f # Clean up any unused, untagged images (this will clear out _every_ unused or untagged docker image on the system, without asking!)
docker compose up -d --build --pull always # Pull and rebuild the latest image
```
But this depends on your docker version, for more discussion, check [this](https://stackoverflow.com/questions/37685581/how-to-get-docker-compose-to-use-the-latest-image-from-repository).
#### Docker
Expand Down