Skip to content

Releases: stackhpc/docker-tang

v2.0.0

03 Oct 15:16
a4b61b7
Compare
Choose a tag to compare

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

v1.0.1

12 Sep 14:41
c49f5ab
Compare
Choose a tag to compare

What's Changed

  • Fix execute permission bit on health-check script by @jovial in #1

New Contributors

  • @jovial made their first contribution in #1

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

v1.0.0

12 Sep 14:09
Compare
Choose a tag to compare

Initial release.