mirror of
https://github.com/chevereto/docker.git
synced 2026-02-24 07:00:44 +01:00
949 B
949 B
Updating
The update process consist in that you pull our chevereto/container-builder repo changes for updating the Dockerfile. From there you can re-build the image, with the updated changes.
One-click updating
- Go to Actions
- Select Update template under Workflows
- Click on Run Workflow and confirm
🤖 When done a bot will create a pull request in your repo so you can review and confirm the changes.
Manual updating
- Add the main template repository as remote
template. This is required just once.
git remote add template https://github.com/chevereto/container-builder
- Fetch
templateand merge it withmain. This will pull all updates.
git fetch template main
git merge template/main --allow-unrelated-histories
- When done push the changes to your remote repository.
git push

