diff --git a/README.md b/README.md index 335ad63..2ef875f 100644 --- a/README.md +++ b/README.md @@ -42,6 +42,7 @@ http://192.168.x.x:8080 would show you what's running INSIDE the container on po * `-p 9117` - the port(s) * `-v /config` - where Jackett should store its config file. * `-v /downloads` - Path to torrent blackhole +* `-e RUN_OPTS` - Optionally specify additional arguments to be passed. EG. `--ProxyConnection 10.0.0.100:1234` * `-e PGID` for GroupID - see below for explanation * `-e PUID` for UserID - see below for explanation * `-e TZ` for timezone EG. Europe/London diff --git a/root/etc/services.d/jackett/run b/root/etc/services.d/jackett/run index b43feea..53791af 100644 --- a/root/etc/services.d/jackett/run +++ b/root/etc/services.d/jackett/run @@ -1,4 +1,4 @@ #!/usr/bin/with-contenv bash exec \ - s6-setuidgid abc mono /app/Jackett/JackettConsole.exe + s6-setuidgid abc mono /app/Jackett/JackettConsole.exe "${RUN_OPTS}"