Build TMSU from source and use it from a docker container.
git clone http://github.com/7db9a/tmsu-docker
cd tmsu-docker && make TMSU_VERSION=0.7.5
alias tmsu-docker='docker run \
-it \
--device /dev/fuse \
--cap-add SYS_ADMIN \
--security-opt apparmor:unconfined \
-v $(pwd):/working tmsu:0.7.5-buster \
/bin/bash'
tmsu-docker
make build TMSU_VERSION=$VERSION
docker run \
-it \
--device /dev/fuse \
--cap-add SYS_ADMIN \
--security-opt apparmor:unconfined \
-v $(pwd):/working tmsu:$VERSION-buster \
/bin/bash
The options device, cap-add, and security-opt are to make docker work with FUSE, which enables tmsu mount
.