Upgrade
To ensure you have the latest features and bug fixes, it's important to keep your LIVCK installation up to date. Follow these steps to perform an upgrade:
Step 1 - Navigate to LIVCK Directory
cd /opt/livck
Step 2 - Pull Latest Docker Image
Pull the latest LIVCK Docker image from the registry:
docker compose pull app
Step 3 - Restart Docker Stack with New Image
Restart the containers to use the newly pulled image:
docker compose up -d
Step 4 - Run Update Command
Execute the LIVCK update command on the updated container:
docker compose exec app php artisan update --force
Step 5 - Correct File Permissions
chmod -R gu+w storage/ && chmod -R guo+w storage/ && chmod -R gu+w bootstrap/cache/ && chmod -R guo+w bootstrap/cache/
Step 6 - Clear Cache
docker compose exec app php artisan cache:clear