У нас вы можете посмотреть бесплатно How to Fix N8N Workflow Errors and Update Self Hosted N8N in Digital Ocean или скачать в максимальном доступном качестве, видео которое было загружено на ютуб. Для загрузки выберите вариант из формы ниже:
Если кнопки скачивания не
загрузились
НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если возникают проблемы со скачиванием видео, пожалуйста напишите в поддержку по адресу внизу
страницы.
Спасибо за использование сервиса ClipSaver.ru
Step-by-Step Guide to Updating Your DigitalOcean Instance 1. *Access DigitalOcean Dashboard* Navigate to your DigitalOcean account and log in. 2. *Create a Snapshot* Go to the Snapshots section of your dashboard. Click on "Take a live snapshot" to create a backup of your current instance. This ensures that your data is safe and can be restored if anything goes wrong during the update process. 3. *Access the Droplet Console* Return to the Droplets section and find your specific droplet. Open the console for your droplet to access the terminal. 4. *Check Current Version* Within the console, verify the current version of your application (e.g., version 1.902) to ensure you know the starting point before updating. 5. *Navigate to Docker Folder* Use the command `cd` to navigate to the directory containing your Docker instance. cd /opt/n8n-docker-caddy 6. *Pull the Latest Docker Version* Execute the command to pull the latest version of Docker. If you encounter a typo or error, correct it and re-run the command. docker compose pull 7. *Remove the Old Docker Instance* Use Docker Compose to bring down the current running containers. This step ensures that the old version is stopped and removed before updating. docker compose down 8. *Rebuild and Start the Container* Rebuild the Docker containers with the updated version and start them. This will apply the update to your application. docker compose up -d 9. *Verify Update Success* Exit the console and refresh your application to check if the update was successful. If you encounter errors, you can restore your system using the snapshot taken earlier. 10. *Final Verification* Go back to the settings and confirm the version number reflects the update (e.g., version 1.1.3). Test your workflows to ensure everything operates as expected. These steps should help you update your instance on DigitalOcean, ensuring minimal disruption to your workflows. If any issues arise, revert to the snapshot for a quick recovery.