-
Notifications
You must be signed in to change notification settings - Fork 583
Updating the Project
If you ran the git checkout -- 'git ls-files -m' as suggested in the old wiki entry then please check your duck.sh because it removed your domain and token
Periodically updates are made to project which include new or modified container template, changes to backups or additional features. As these are released your local copy of this project will become out of date. This section deals with how to bring your project to the latest published state.
Git offers build in functionality to fetch the latest changes.
git pull origin master
will fetch the latest changes from GitHub without overwriting files that you have modified yourself. If you have done a local commit then your project may to handle a merge conflict.
This can be verified by running git status
. You can ignore if it reports duck.sh as being modified.
Should you have any modified scripts or templates they can be reset to the latest version with git checkout -- scripts/ .templates/
With the new latest version of the project you can now use the menu to build your stack. If there is a particular container you would like to update its template then you can select that at the overwrite option for your container. You have the choice to not to overwrite, preserve env files or to completely overwrite any changes (passwords)
After your stack had been rebuild you can run docker-compose up -d
to pull in the latest changes. If you have not update your images in a while consider running the ./scripts/update.sh
to get the latest version of the image from Docker hub as well