Upgrades
Bare Metal
If you perform a Mbin upgrade (eg. git pull
), be aware to always execute the following Bash script:
./bin/post-upgrade
Clear Cache
And when needed also execute: sudo redis-cli FLUSHDB
to get rid of Redis/KeyDB cache issues. And reload the PHP FPM service if you have OPCache enabled.
Docker
- Pull the latest Docker image:
docker compose pull
Or, if you are building locally, then you'll need to rebuild the Mbin docker image (without using cached layers):
docker compose build --no-cache
- Bring down the containers and up again (with
-d
for detach):
docker compose down
docker compose up -d