1
mirror of https://github.com/jakejarvis/docker-tor.git synced 2025-11-27 00:16:07 -05:00
Files
docker-tor/entrypoint.sh

9 lines
151 B
Bash
Executable File

#!/bin/sh
set -o errexit
# fix permissions
find /var/lib/tor -type d -exec chmod 700 {} \;
find /var/lib/tor -type f -exec chmod 600 {} \;
exec "$@"