Update Guide

In your Standalone or Laravel app

Updating Mixpost is a simple task that can be executed in a few steps. This guide will provide you with the necessary steps to update Mixpost.

composer update inovector/mixpost

After the update is complete, clear the cache by running the following command:

php artisan cache:clear

Next, publish the assets:

php artisan mixpost:publish-assets

Finally, terminate the Horizon process by running:

php artisan horizon:terminate

This all!

You can check the version of Mixpost by running the command:

composer show inovector/mixpost

Update with Docker

Updating Mixpost with Docker is straightforward, you just make sure to preserve the mounted volume. Just pull the latest image, stop and remove the current container, and then start a new one.

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