Faved

Updating

Depending on whether you previously completed the Quick Installation or the Advanced Installation, the steps for updating Faved to the latest version will differ. Please refer to the corresponding section below for detailed instructions.

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 from the official repository to your Faved instance directory

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 pulled from Docker Hub

docker compose up --pull always -d

Done! You now have the latest version running.