### Interactive Install/Update (Standalone) Source: https://github.com/hydraponique/3x-ui/blob/main/README.md This script allows for interactive installation or update, prompting for username, password, and port. ```bash bash <(curl -Ls https://raw.githubusercontent.com/hydraponique/3x-ui/main/install.sh) ``` -------------------------------- ### Rollback Standalone Source: https://github.com/hydraponique/3x-ui/blob/main/README.md Command to revert to a previous version using the install script. ```bash bash <(curl -Ls https://raw.githubusercontent.com/MHSanaei/3x-ui/main/install.sh) ``` -------------------------------- ### Docker / Compose Update Source: https://github.com/hydraponique/3x-ui/blob/main/README.md Instructions to update the 3x-ui image in a Docker Compose setup. ```diff services: 3xui: - image: ghcr.io/mhsanaei/3x-ui:latest + image: ghcr.io/hydraponique/3x-ui:latest ``` -------------------------------- ### Silent Update (Standalone - Recommended) Source: https://github.com/hydraponique/3x-ui/blob/main/README.md This script performs a silent update for standalone installations, preserving existing configurations. ```bash bash <(curl -Ls https://raw.githubusercontent.com/hydraponique/3x-ui/main/update.sh) ``` -------------------------------- ### Rollback Docker Source: https://github.com/hydraponique/3x-ui/blob/main/README.md Instructions to revert the Docker image to the previous version. ```bash docker compose pull && up -d ``` -------------------------------- ### Check x-ui version Source: https://github.com/hydraponique/3x-ui/blob/main/README.md This command helps determine if you are using the Standalone or Docker version of x-ui. ```bash x-ui ``` -------------------------------- ### Docker / Compose Update Command Source: https://github.com/hydraponique/3x-ui/blob/main/README.md Command to pull the new image and restart the container. ```bash docker compose pull && docker compose up -d ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.