chore(deps): update ghcr.io/gothenburgbitfactory/taskchampion-sync-server docker tag to v0.7.0 #481
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
0.6.1
->0.7.0
Warning
Some dependencies could not be looked up. Check the Dependency Dashboard for more information.
Release Notes
GothenburgBitFactory/taskchampion-sync-server (ghcr.io/gothenburgbitfactory/taskchampion-sync-server)
v0.7.0
Compare Source
What's Changed
Breaking Changes
Running the Docker image for this server without specifying DATA_DIR
in releases before this one defaulted to storing the server data in
/var/lib/taskchampion-sync-server
. However, the Dockerfile onlyspecifies that the subdirectory
/var/lib/taskchampion-sync-server/data
is a VOLUME. This change fixes the default to match the VOLUME, putting
the server data on an ephemeral volume or, if a
--volume $NAME:/var/lib/taskchampion-sync-server/data
argument is provided todocker run
, in a named volume.Before this release, with default settings the server data is stored in
the container's ephemeral writeable layer. When the container is killed,
the data is lost. This issue does not affect deployments with
docker compose
, as the compose configuration specifies a correctDATA_DIR
.You can determine if your deployment is affected as follows. First,
determine the ID of the running server container,
$CONTAINER
. Examinethe volumes for that container:
Next, find the server data, in a
.sqlite3
file:If the data is not in a directory mounted as a volume, then it is
ephemeral. To copy the data out of the container:
docker cp $CONTAINER:/var/lib/taskchampion-sync-server/taskchampion-sync-server.sqlite3 /tmp
You may then upgrade the image and use
docker cp
to copy the data backto the correct location,
/var/lib/taskchampion-sync-server/data
.Note that, as long as all replicas are fully synced, the TaskChampion
sync protocol is resilient to loss of server data, so even if the server
data has been lost,
task sync
may continue to work.New Contributors
Full Changelog: GothenburgBitFactory/taskchampion-sync-server@v0.6.1...v0.7.0
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR has been generated by Renovate Bot.