1
mirror of https://github.com/jakejarvis/docker-tor.git synced 2025-11-27 01:26:07 -05:00

initial commit 🎉

This commit is contained in:
2022-12-29 11:35:34 -05:00
commit aa5b5c006a
3 changed files with 107 additions and 0 deletions

9
entrypoint.sh Executable file
View File

@@ -0,0 +1,9 @@
#!/bin/sh
set -o errexit
# fix permissions
find /var/lib/tor -type d -exec chmod -v 700 {} \;
find /var/lib/tor -type f -exec chmod -v 600 {} \;
chown -R debian-tor /var/lib/tor
exec "$@"