9 lines
158 B
Bash
9 lines
158 B
Bash
|
#!/bin/sh
|
||
|
set -e
|
||
|
echo "Configure tinyproxy"
|
||
|
dockerize -template /etc/tinyproxy/tinyproxy.conf.template:/etc/tinyproxy/tinyproxy.conf
|
||
|
echo "Done."
|
||
|
|
||
|
exec "$@"
|
||
|
|