Skip to main content

Updating Mixpost Pro

Update involves improvements and bug fixes to enhance security and functionality, occurring regularly with little impact on user interaction.

It's important to keep your Mixpost Pro version up to date. This ensures you get the latest features and fixes. Follow these guidelines based on your installation method.

Update Using Docker

Updating Mixpost using Docker is straightforward. Ensure that you preserve the mounted volume during the process. Simply follow these steps:

Navigate to your folder where you have the docker-compose.yml the file then run:

# Pull the latest version
docker-compose pull

# Stop and remove the old container
docker-compose down

# Start a new container
docker-compose up -d

Update in a PHP Environment

This method applies if you have installed Mixpost Pro manually or within an existing Laravel application.

1. Update the Mixpost Pro Package

composer update inovector/mixpost-pro-team

2. Clear the cache

php artisan route:clear
php artisan view:clear
php artisan mixpost:clear-services-cache
php artisan mixpost:clear-settings-cache

4. Optimize application

php artisan optimize

3. Terminate the Horizon process

php artisan horizon:terminate

Conclusion

Following these steps will ensure that your Mixpost Pro installation is updated with the latest versions, maintaining performance and security standards.