mitmproxy/release/docker/docker-entrypoint.sh

18 lines
408 B
Bash
Raw Normal View History

2020-04-13 10:20:50 +00:00
#!/bin/sh
# WARNING: do not change the shebang - the Docker base image might not have what you want!
set -o errexit
set -o pipefail
set -o nounset
# set -o xtrace
2018-05-18 08:37:56 +00:00
MITMPROXY_PATH="/home/mitmproxy/.mitmproxy"
if [[ "$1" = "mitmdump" || "$1" = "mitmproxy" || "$1" = "mitmweb" ]]; then
mkdir -p "$MITMPROXY_PATH"
chown -R mitmproxy:mitmproxy "$MITMPROXY_PATH"
su-exec mitmproxy "$@"
2018-05-18 08:37:56 +00:00
else
exec "$@"
2018-05-18 08:37:56 +00:00
fi