entrypoint error?
Only using VERACRYPT_PASSWORD the veracrypt-mount container always exits with the log output
/bin/sh: 1: Syntax error: redirection unexpected
same issue here. did you solve this?
By running
docker run --rm \
--entrypoint /bin/bash \
tomerh2001/veracrypt-mount:latest \
-c '/entrypoint.sh'
you'll get /bin/bash: line 1: /entrypoint.sh: No such file or directory.
By changing what's after -c to 'ls -lhta /' you'll see /entrypoint.sh indeed doesn't exist, and to 'apt list --installed' you'll see veracrypt is not even installed!
So whatever is on dockerhub is a bad image, not properly built as the code indicates. Also, the image is 2 years old.
Furthermore, docker build . fails to build the current code.
Thanks for the investigation @utensil . Do you have any alternative veracrypt images you've been looking at?