Improvements

This commit is contained in:
Jonathan Rosenbaum 2025-06-09 18:20:14 +00:00
parent 642aa23e54
commit 48a64c674c

View File

@ -73,6 +73,23 @@ Run the following script to generate the required files:
## 🔄 Upgrade Process
### 🚀 **Automated Upgrade (Recommended)**
If you want a **fully automated** upgrade, use the `wp-rocket-launch.sh` script:
```bash
./wp-rocket-launch.sh
```
✅ Automatically cleans up existing containers and volumes
✅ Builds the custom WordPress image
✅ Deploys the new version with minimal manual intervention
✅ Copies new installation files to production
Alternatively, follow the manual upgrade process below.
### 🚀 **Manual Upgrade (Expert Mode)**
### **1⃣ Stop Containers & Clean Up**
```bash
docker compose down -v
@ -103,10 +120,6 @@ docker compose -f docker-compose.first.yml down
# Start production environment
docker compose up -d
# Or just run
./wp-rocket-launch.sh # Also, cleans up existing containers and volumes,
# and copies new installation to production.
```