- Docs
- Getting Started
- Updating
Updating
Keep your Faved instance on the latest version.
Depending on whether you previously completed the Quick Installation or the Advanced Installation, the steps for updating Faved to the latest version will differ.
- Updating after Quick Installation — if you used the Quick Installation method.
- Updating after Advanced Installation — if you used the Advanced Installation method with Docker Compose.
Choose the section that matches your setup below.
Updating after Quick Installation
Follow these steps if you installed Faved using the Quick Installation method.
1
Pull the latest stable image from Docker Hub
docker pull denho/faved
2
Stop and remove the running container
docker stop faved
docker rm faved
If you changed the container name during installation, replace faved with the name you used.
3
Start a new Docker container
docker run -d --name faved -p 8080:80 -v faved-data:/var/www/html/storage denho/faved
Done! You now have the latest version running.
Updating after Advanced Installation
Follow these steps if you set up Faved using the Advanced Installation method.
1
Pull the latest `docker-compose.yml` file to your Faved directory
Fetch the latest file from the official repository:
cd faved-app
rm docker-compose.yml
curl -O https://raw.githubusercontent.com/denho/faved/refs/heads/main/docker-compose.yml
2
Recreate the Docker service with the latest image
docker compose up --pull always -d
Done! You now have the latest version running.
Edit this page on GitHubLast updated on June 11, 2026