What's Changed
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