Skip to content

v2.0.0

Latest
Compare
Choose a tag to compare
@jovial jovial released this 03 Oct 15:16
a4b61b7

What's Changed

  • Use upstream default for DB path by @jovial in #3

Upgrading from 1.x

The old version of the container did not persist the database across container deletion when using the instructions from the official README, see #2. To migrate you will need to manually copy the database from /var/cache/tang to /var/db/tang prior to deleting the container:

# Assuming the container is named tang
docker stop tang
docker cp tang:/var/cache/tang /tmp/tang
docker cp /tmp/tang /var/db/tang

These should now be present in your docker volume. You can now safely delete the container and upgrade to the latest version. If you
were already mounting a volume to var/cache/tang you can change to the path in your docker volume specification to /var/db/tang

Full Changelog: v1.0.1...v2.0.0