Skip to main content

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.

Make sure to update MIXPOST_VERSION: '^0.7' in your docker-compose.yml 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